Things were working, suddenly regressed
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user