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