First commit

This commit is contained in:
2026-02-06 17:29:56 +09:00
commit ea90cc5d58
80 changed files with 75834 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace LowLevelGuyCom.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}