InitalCommit

This commit is contained in:
Müller Wayan
2025-03-18 19:10:44 +01:00
commit 825dc950a6
130 changed files with 79075 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace WebAp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}