PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenVisitorApp/Models/ErrorViewModel.cs
2023-04-09 19:28:29 +04:00

9 lines
201 B
C#

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