Pibd-22_Morozov_V.S_Automob.../AutomobilePlant/AutoPlantClientApp/Models/ErrorViewModel.cs
2023-04-19 19:19:17 +03:00

9 lines
202 B
C#

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