10 lines
181 B
C#
Raw Normal View History

2024-04-07 15:13:57 +04:00
namespace PizzeriaClientApp.Models
{
2024-04-07 19:43:03 +04:00
public class ErrorViewModel
{
public string? RequestId { get; set; }
2024-04-07 15:13:57 +04:00
2024-04-07 19:43:03 +04:00
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
2024-04-07 15:13:57 +04:00
}