PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyClientApp/Models/ErrorViewModel.cs

10 lines
207 B
C#
Raw Normal View History

2024-04-18 16:34:54 +04:00
namespace TravelCompanyClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}