using MessagePack; namespace SVSim.EmulatedEntrypoint.Models.Dtos; [MessagePackObject] public class AvatarInfo { [Key("abilities")] public Dictionary Abilities { get; set; } = new Dictionary(); [Key("schedules")] public SpecialRotationSchedule Schedules { get; set; } = new SpecialRotationSchedule(); }