Files
ASP.NET/01_IntroductionSessions/Session01/Projects/RoutingBasics/Models/ErrorViewModel.cs
T

9 lines
201 B
C#

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