Files
ASP.NET/content/01-Introductory-Sessions/Session00/Projects/ThePodcastWebsite/Models/ErrorViewModel.cs
T
2025-07-18 14:47:22 +03:30

9 lines
205 B
C#

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