Things were working, suddenly regressed

This commit is contained in:
gamer147
2026-05-23 18:14:42 -04:00
parent 56d3cf0ec8
commit 66184b3685
31 changed files with 1493 additions and 97 deletions

View File

@@ -9,7 +9,12 @@ public class AvatarInfo
[JsonPropertyName("abilities")]
[Key("abilities")]
public Dictionary<string, AvatarAbility> Abilities { get; set; } = new Dictionary<string, AvatarAbility>();
/// <summary>
/// Prod (2026-05-23) sends an empty array here. Distinct shape from MyRotationInfo.Schedules,
/// which is a dict {free_battle, gathering}. Entry shape TBD when an active Avatar season is
/// captured — see <see cref="AvatarSchedule"/>.
/// </summary>
[JsonPropertyName("schedules")]
[Key("schedules")]
public SpecialRotationSchedule Schedules { get; set; } = new SpecialRotationSchedule();
public List<AvatarSchedule> Schedules { get; set; } = new();
}