RefreshingCSharp/WebApp/Models/ErrorViewModel.cs

9 lines
190 B
C#
Raw Permalink Normal View History

2022-04-30 16:14:48 +02:00
namespace WebApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}