Files
low-level-guy.com/Models/ErrorViewModel.cs
T
2026-02-06 17:29:56 +09:00

9 lines
177 B
C#

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