Startpunkten

This commit is contained in:
2026-03-05 15:43:26 +01:00
commit dd99fb7b01
95 changed files with 3262 additions and 0 deletions

7
Models/ErrorViewModel.cs Normal file
View File

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