PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaClientApp/Models/ErrorViewModel.cs

10 lines
202 B
C#
Raw Normal View History

2024-05-08 12:14:52 +04:00
namespace PizzeriaClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}