forked from Moux23333/FreeSR
12 lines
194 B
C#
12 lines
194 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class ChangeLineupLeaderScRsp
|
||
|
{
|
||
|
[ProtoMember(7)] public List<int> Slot;
|
||
|
[ProtoMember(10)] public int Retcode;
|
||
|
}
|
||
|
|
||
|
}
|