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

9 lines
213 B
C#
Raw Normal View History

2023-04-04 00:26:15 +04:00
namespace PrecastConcretePlantClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}