mirror of
https://git.neonteam.dev/amizing/FreeSR.git
synced 2025-03-12 03:36:21 -04:00
16 lines
308 B
C#
16 lines
308 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class PlayerGetTokenScRsp
|
|
{
|
|
[ProtoMember(7)] public long SecretKeySeed;
|
|
[ProtoMember(1)] public int Uid;
|
|
[ProtoMember(2)] public BlackInfo BlackInfo;
|
|
[ProtoMember(5)] public int Retcode;
|
|
[ProtoMember(8)] public string Msg;
|
|
}
|
|
|
|
}
|