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

9 lines
201 B
C#

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