Add GameVersion domain and login validation

This commit is contained in:
Holden
2026-06-19 15:11:08 -05:00
parent 076fed09f2
commit 2cfc5e7369
31 changed files with 291 additions and 39 deletions

View File

@@ -1,7 +1,6 @@
using RecNet.Domain.Common;
using RecNet.Domain.Entities.Profiles;
namespace RecNet.Domain.Repositories;
namespace RecNet.Domain.Profiles;
public interface IProfileRepository
{

View File

@@ -1,4 +1,4 @@
namespace RecNet.Domain.Entities.Profiles.Names;
namespace RecNet.Domain.Profiles.Names;
public static class DefaultNameGenConfig
{

View File

@@ -1,4 +1,4 @@
namespace RecNet.Domain.Entities.Profiles.Names;
namespace RecNet.Domain.Profiles.Names;
public class NameGenConfig
{

View File

@@ -1,7 +1,7 @@
using RecNet.Domain.Common;
using RecNet.Domain.Exceptions;
namespace RecNet.Domain.Entities.Profiles;
namespace RecNet.Domain.Profiles;
public class Profile
{