Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/AvatarInfo.cs
2024-09-12 00:35:31 -04:00

10 lines
320 B
C#

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