PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs
2024-05-08 11:14:52 +03:00

10 lines
202 B
C#

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