CourseWork_CompShop/ComputerShopProvider/ComputerShopClientApp/Models/ErrorViewModel.cs

9 lines
205 B
C#

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