PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantClientApp/Models/ErrorViewModel.cs
2024-04-22 23:18:25 +04:00

10 lines
207 B
C#

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