PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopClientApp/Models/ErrorViewModel.cs

9 lines
185 B
C#

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