kehati/Models/ErrorViewModel.cs

9 lines
177 B
C#

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