CourseWork_ServiceStation/ServiceStation/ServiceStationGuarantorApp/Models/ErrorViewModel.cs

10 lines
211 B
C#

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