ISEbd-21_Agliullov.D.A._Con.../ConfectioneryClientApp/Models/ErrorViewModel.cs

9 lines
206 B
C#
Raw Normal View History

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