forked from Moux23333/FreeSR
14 lines
231 B
C#
14 lines
231 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class GetAvatarDataScRsp
|
||
|
{
|
||
|
[ProtoMember(4)] public bool IsAll;
|
||
|
[ProtoMember(8)] public List<Avatar> AvatarList;
|
||
|
[ProtoMember(12)] public int Retcode;
|
||
|
}
|
||
|
|
||
|
}
|