Adding character coords

This commit is contained in:
Zeeshaun
2026-01-23 14:24:08 -06:00
parent 900951b1a7
commit 241312b0be
4 changed files with 25 additions and 10 deletions
@@ -11,7 +11,9 @@ public class Character
public string OwnerUserId { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public DateTime CreatedUtc { get; set; } = DateTime.UtcNow;
}
public string Name { get; set; } = string.Empty;
public Coord Coord { get; set; } = new();
public DateTime CreatedUtc { get; set; } = DateTime.UtcNow;
}