Files
hamann-ausgabe-core/HaWeb/Models/ErrorViewModel.cs
2022-06-04 02:42:01 +02:00

8 lines
175 B
C#

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