b967bd70eb
- Introduced `IGameRepository` interface and its implementation. - Transitioned namespaces to `file-scoped` for consistency. - Simplified class definitions, e.g., `Game` and `SixDigitInt`. - Restructured `GameField` logic for improved readability and functionality. - Fixed formatting issues in `API.csproj` and added a `using` directive in `Program.cs`.
5 lines
81 B
C#
5 lines
81 B
C#
namespace API.Repository.Game;
|
|
|
|
public class GameRepository : IGameRepository
|
|
{
|
|
} |