PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantClientApp/Models/ErrorViewModel.cs

9 lines
213 B
C#
Raw Normal View History

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