PIbd-23_Abazov_A.A._Confect.../Confectionery/ConfectioneryClientApp/Models/ErrorViewModel.cs

9 lines
206 B
C#

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