yavsc/src/Yavsc.Server/Models/ErrorViewModel.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

10 lines
218 B
C#

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