Deck fixes
This commit is contained in:
@@ -52,8 +52,11 @@ public class DeckListResponse
|
||||
[Key("user_leader_skin_setting_list")] public Dictionary<string, DefaultLeaderSkinSetting> UserLeaderSkinSettingList { get; set; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Trial / tutorial-specific decks. Empty in the 2026-05-23 prod capture; entry shape TBD.
|
||||
/// Trial / tutorial-specific decks. Prod emits this on <c>/deck/info</c> (All format) but
|
||||
/// OMITS the key entirely on <c>/deck/my_list</c> (specific-format) — controller mirrors that
|
||||
/// asymmetry by leaving this null on specific-format responses. Empty array in the
|
||||
/// 2026-05-23 prod capture; entry shape TBD.
|
||||
/// </summary>
|
||||
[JsonPropertyName("trial_deck_list")]
|
||||
[Key("trial_deck_list")] public List<UserDeck> TrialDeckList { get; set; } = new();
|
||||
[Key("trial_deck_list")] public List<UserDeck>? TrialDeckList { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user