PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyClientApp/Models/ErrorViewModel.cs
2024-04-18 16:34:54 +04:00

10 lines
207 B
C#

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