PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantClientApp/Models/ErrorViewModel.cs
2024-04-07 00:02:29 +04:00

10 lines
207 B
C#

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