Initial Commit

This commit is contained in:
2026-06-17 12:59:31 -04:00
commit 3ec2f67103
95 changed files with 66244 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Model;
public class GameDoc
{
public string Title { get; set; } = string.Empty;
public string Category { get; set; } = string.Empty;
public string? Link { get; set; }
public string? Git { get; set; }
public string ContentHtml { get; set; } = string.Empty;
}