API V1 Aeldria

This commit is contained in:
2026-06-23 13:32:17 +02:00
commit b56c82d229
164 changed files with 5666 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace Aeldria.Api.DTOs;
public class CreateCharacterRequest
{
public string Name { get; set; } = string.Empty;
}
+8
View File
@@ -0,0 +1,8 @@
namespace Aeldria.Api.DTOs;
public class LoginRequest
{
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
+10
View File
@@ -0,0 +1,10 @@
namespace Aeldria.Api.DTOs;
public class RegisterRequest
{
public string Username { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
+12
View File
@@ -0,0 +1,12 @@
namespace Aeldria.Api.DTOs;
public class UpdatePositionRequest
{
public long CharacterId { get; set; }
public double PosX { get; set; }
public double PosY { get; set; }
public double PosZ { get; set; }
}