PIbd22_NikiforovaMV_Automob.../AutomobilePlantClientApp/Models/ErrorViewModel.cs
2024-06-22 22:23:42 +04:00

9 lines
208 B
C#

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