PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShowShopApp/Models/ErrorViewModel.cs
2024-04-22 19:52:20 +04:00

9 lines
204 B
C#

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