Initial commit

This commit is contained in:
2025-11-29 20:25:53 +01:00
commit f9a41263a5
84 changed files with 83097 additions and 0 deletions

8
Models/ErrorViewModel.cs Normal file
View File

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