PIbd-23_Starostin_I.K._Ship.../ShipyardClientApp/Models/ErrorViewModel.cs

10 lines
214 B
C#

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