RefreshingCSharp/WebApp/Models/ErrorViewModel.cs

9 lines
190 B
C#

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