PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantClientApp/Models/ErrorViewModel.cs

10 lines
207 B
C#
Raw Normal View History

2024-04-07 00:02:29 +04:00
namespace AircraftPlantClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}