Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantClientApp/Models/ErrorViewModel.cs
2024-04-18 19:50:43 +03:00

10 lines
214 B
C#

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