PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs

10 lines
181 B
C#

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