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