Préparation du projet pour Gitea

This commit is contained in:
2025-07-25 10:19:24 +02:00
parent bf926d1fd1
commit 5b96513515
20 changed files with 441 additions and 0 deletions

9
Models/ErrorViewModel.cs Normal file
View File

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