2024-04-05 13:29:30 +04:00

10 lines
202 B
C#

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