PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs

9 lines
201 B
C#
Raw Normal View History

2023-03-28 08:52:39 +04:00
namespace PizzeriaClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}