diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/XFriendData.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XFriendData.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XFriendData.cs | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XFriendData.cs b/Client/Assets/Scripts/XMainClient/XFriendData.cs new file mode 100644 index 00000000..cf542931 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XFriendData.cs @@ -0,0 +1,57 @@ +using System;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace XMainClient
+{
+ public class XFriendData
+ {
+ public uint profession;
+
+ public uint viplevel;
+
+ public uint lastlogin;
+
+ public uint level;
+
+ public uint powerpoint;
+
+ public uint online;
+
+ public int audioid;
+
+ public uint uid;
+
+ public uint titleID;
+
+ public uint paymemberid;
+
+ public uint degreeAll;
+
+ public uint degreeDay;
+
+ public uint receiveGiftState;
+
+ public uint sendGiftState;
+
+ public uint receiveAll;
+
+ public int receiveNo;
+
+ public ulong roleid;
+
+ public string name;
+
+ public string guildname;
+
+ public uint receivetime;
+
+ public GameObject friendgo;
+
+ public string openID;
+
+ public string nickName;
+
+ public List<uint> setid;
+ }
+}
|