forked from Bremen/ESG
1
0
Fork 0
ESG/Models/ErrorViewModel.cs

10 lines
195 B
C#

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