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

9 lines
188 B
C#

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