PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantClientApp/Models/ErrorViewModel.cs

10 lines
209 B
C#
Raw Permalink Normal View History

2024-04-05 23:37:18 +04:00
namespace AutomobilePlantClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}