ISEbd-21_Pyatkin_I.A_Precas.../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);
}
}