PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShowShopApp/Models/ErrorViewModel.cs

9 lines
204 B
C#
Raw Normal View History

2024-04-22 19:52:20 +04:00
namespace CarRepairShowShopApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}