Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantClientApp/Models/ErrorViewModel.cs

10 lines
214 B
C#
Raw Normal View History

2024-04-18 20:50:43 +04:00
namespace PrecastConcretePlantClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}