10 lines
181 B
C#
Raw Normal View History

2024-05-08 11:14:52 +03:00
namespace PizzeriaClientApp.Models
{
2024-05-22 01:01:59 +03:00
public class ErrorViewModel
{
public string? RequestId { get; set; }
2024-05-08 11:14:52 +03:00
2024-05-22 01:01:59 +03:00
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
2024-05-08 11:14:52 +03:00
}