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

9 lines
206 B
C#
Raw Normal View History

2024-04-07 17:41:15 +04:00
namespace CarRepairShowClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}