Getting ready to seed more data
This commit is contained in:
@@ -1,22 +1,28 @@
|
||||
using MessagePack;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class MyRotationInfo
|
||||
{
|
||||
[JsonPropertyName("abilities")]
|
||||
[Key("abilities")]
|
||||
public Dictionary<string, MyRotationAbility> Abilities { get; set; } = new Dictionary<string, MyRotationAbility>();
|
||||
[JsonPropertyName("schedules")]
|
||||
[Key("schedules")]
|
||||
public SpecialRotationSchedule Schedules { get; set; } = new SpecialRotationSchedule();
|
||||
[JsonPropertyName("setting")]
|
||||
[Key("setting")]
|
||||
public Dictionary<string, SpecialRotationSetting>? Settings { get; set; }
|
||||
[JsonPropertyName("disabled_card_set_ids")]
|
||||
[Key("disabled_card_set_ids")]
|
||||
public List<int>? DisabledCardSets { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Set to card to card reprinted list.
|
||||
/// </summary>
|
||||
[JsonPropertyName("reprinted_base_card_ids")]
|
||||
[Key("reprinted_base_card_ids")]
|
||||
public Dictionary<string, Dictionary<string, int>>? ReprintedCards { get; set; }
|
||||
|
||||
@@ -24,6 +30,7 @@ public class MyRotationInfo
|
||||
/// <summary>
|
||||
/// Set to card to count banlist.
|
||||
/// </summary>
|
||||
[JsonPropertyName("restricted_base_card_id_list")]
|
||||
[Key("restricted_base_card_id_list")]
|
||||
public Dictionary<string, Dictionary<string, int>>? Banlist { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user