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
+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; }
}