ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarClientApp/Models/ErrorViewModel.cs

10 lines
202 B
C#

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