Initial commit

This commit is contained in:
2025-09-26 11:40:52 +02:00
commit 95e9f3232c
201 changed files with 146461 additions and 0 deletions

8
Models/ErrorViewModel.cs Normal file
View File

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