Files
hamann-ausgabe-core/HaWeb/Models/ErrorViewModel.cs
2022-05-11 12:27:19 +02:00

9 lines
176 B
C#

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