ISEbd-21_Putilin_P.A._Preca.../PrecastConcretePlant/PrecastConcretePlantClientApp/Models/ErrorViewModel.cs

9 lines
213 B
C#

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