Files
ASP.NET/01_IntroductionSessions/Session02/Projects/Wiki/Models/ErrorViewModel.cs
T

9 lines
188 B
C#

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