Added new Hamann-Project

This commit is contained in:
schnulller
2022-05-11 12:27:19 +02:00
parent c5f30d463c
commit 209c40258d
32 changed files with 2858 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
namespace HaWeb.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}