2024-05-03 19:51:28 +04:00

10 lines
202 B
C#

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