PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryClientApp/Models/ErrorViewModel.cs
2024-05-09 18:53:36 +04:00

9 lines
206 B
C#

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