using MessagePack; namespace SVSim.EmulatedEntrypoint.Models.Dtos; [MessagePackObject] public class SpecialRotationSetting { [Key("rotation_id")] public int RotationId { get; set; } /// /// Formatted as 'setid|setid|setid...'. /// [Key("card_set_ids")] public string CardSetIds { get; set; } /// /// Formatted as 'abilityid|abilityid|abilityid...'. /// [Key("abilities")] public string Abilities { get; set; } }