forked from Moux23333/FreeSR
13 lines
214 B
C#
13 lines
214 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class GetLoginActivityScRsp
|
||
|
{
|
||
|
[ProtoMember(4)] public List<LoginActivityData> LoginActivityList;
|
||
|
[ProtoMember(14)] public int Retcode;
|
||
|
}
|
||
|
|
||
|
}
|