kehati/Models/View/ErrorViewModel.cs

9 lines
182 B
C#

namespace kehati.Models.View;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}