PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs
2023-03-26 19:05:49 +04:00

9 lines
205 B
C#

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