Files
FreeSR/FreeSR.Proto/LineupSlotData.cs
2024-01-27 21:06:07 +08:00

14 lines
220 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class LineupSlotData
{
[ProtoMember(14)] public int Slot;
[ProtoMember(13)] public AvatarType AvatarType;
[ProtoMember(11)] public int Id;
}
}