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