ISEbd-21_Agliullov.D.A._Con.../ConfectioneryClientApp/Models/ErrorViewModel.cs
Данияр Аглиуллов 08cd7160fd ClientApp
2023-03-04 17:55:19 +04:00

9 lines
206 B
C#

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