Refactor GameRepository and GameManager architecture, introduce Player model, and update dependency registration in Program.cs.

This commit is contained in:
2026-02-28 23:06:54 +01:00
committed by Jonas
parent b967bd70eb
commit 0e7bfb7241
11 changed files with 96 additions and 27 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace API.Models.Game;
public class Player
{
public string Name { get; set; }
public string ConnectionId { get; set; }
}