2023-01-12 13:19:05 -07:00

8 lines
181 B
C#

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