Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/MyRotationInfo.cs
2024-09-12 00:35:31 -04:00

29 lines
970 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class MyRotationInfo
{
[Key("abilities")]
public Dictionary<string, MyRotationAbility> Abilities { get; set; } = new Dictionary<string, MyRotationAbility>();
[Key("schedules")]
public SpecialRotationSchedule Schedules { get; set; } = new SpecialRotationSchedule();
[Key("setting")]
public Dictionary<string, SpecialRotationSetting>? Settings { get; set; }
[Key("disabled_card_set_ids")]
public List<int>? DisabledCardSets { get; set; }
/// <summary>
/// Set to card to card reprinted list.
/// </summary>
[Key("reprinted_base_card_ids")]
public Dictionary<string, Dictionary<string, int>>? ReprintedCards { get; set; }
/// <summary>
/// Set to card to count banlist.
/// </summary>
[Key("restricted_base_card_id_list")]
public Dictionary<string, Dictionary<string, int>>? Banlist { get; set; }
}