fix: savedb for player data

This commit is contained in:
Naruse
2025-06-17 18:06:26 +08:00
parent 6566c0040a
commit 6fbeb1d34d
2 changed files with 3 additions and 3 deletions

View File

@@ -14,6 +14,6 @@ public class LineupInfo
public string? Name { get; set; }
public uint AstraMateId { get; set; }
public bool IsUsingAstraMate { get; set; }
public List<uint> AvatarIds { get; set; } = [];
public List<uint> ElfIds { get; set; } = [];
public List<int> AvatarIds { get; set; } = [];
public List<int> ElfIds { get; set; } = [];
}