PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaShowClientApp/Models/ErrorViewModel.cs
2023-03-27 04:30:01 +04:00

9 lines
205 B
C#

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