Files
hermes/WebApp/Models/ErrorViewModel.cs
2025-04-06 20:05:38 +02:00

10 lines
191 B
C#

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