10 lines
320 B
C#
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();
|
|
} |