PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs
2023-03-28 08:52:39 +04:00

9 lines
201 B
C#

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