CourseWork_CompShop/ComputerShopProvider/OrdererClientApp/Models/ErrorViewModel.cs

9 lines
200 B
C#

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