PIbd-23_Zargarov_M.A._Pizzeria/Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs

9 lines
201 B
C#
Raw Normal View History

2023-05-13 23:14:14 +04:00
namespace PizzeriaClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}