CourseWork_ServiceStation/ServiceStation/ServiceStationGuarantorApp/Models/ErrorViewModel.cs

10 lines
211 B
C#
Raw Normal View History

2024-04-30 20:36:13 +04:00
namespace ServiceStationGuarantorApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}