Files
mesareportingservices/ReportingServices/Models/ErrorViewModel.cs
Daniel Wathen f996dcfb36 First Commit
2022-11-30 13:15:01 -07:00

9 lines
201 B
C#

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