Files
ASP.NET/IntroductorySessions/Session00/Projects/ThePodcastWebsite/Models/ErrorViewModel.cs
T

9 lines
205 B
C#

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