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);
}
}