DTOs for index mostly done, doing DB models
This commit is contained in:
29
SVSim.EmulatedEntrypoint/Models/Dtos/MyRotationInfo.cs
Normal file
29
SVSim.EmulatedEntrypoint/Models/Dtos/MyRotationInfo.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user