PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryClientApp/Models/ErrorViewModel.cs

10 lines
207 B
C#
Raw Normal View History

2024-05-05 03:45:20 +04:00
namespace ConfectioneryClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}