Rough character selection screen + API

This commit is contained in:
2025-12-24 00:00:24 -06:00
parent 9a56091e8e
commit d9eededbfa
169 changed files with 5643 additions and 189 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace AuthApi.Models;
public class RegisterRequest { public string Username { get; set; } = ""; public string Password { get; set; } = ""; public string? Email { get; set; } }
public class LoginRequest { public string Username { get; set; } = ""; public string Password { get; set; } = ""; }
public class ChangeRoleRequest { public string Username { get; set; } = ""; public string NewRole { get; set; } = ""; }
public class RefreshRequest { public string Username { get; set; } = ""; public string RefreshToken { get; set; } = ""; }