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
+9
View File
@@ -0,0 +1,9 @@
using Model;
namespace Web.Services;
public class GameService
{
public string? OverviewHtml => GeneratedData.OverviewHtml;
public List<GameDoc> Games => GeneratedData.Games;
}