Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/AvatarInfo.cs
2025-05-18 02:27:17 -04:00

12 lines
366 B
C#

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