PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantClientApp/Models/ErrorViewModel.cs

9 lines
208 B
C#
Raw Normal View History

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