ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryClientApp/Models/ErrorViewModel.cs

10 lines
186 B
C#

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