PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryClientApp/Models/ErrorViewModel.cs

10 lines
207 B
C#
Raw Normal View History

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