summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/CGroupPlayerInfo.cs
blob: a5ac8a082fb4d239f7049a04a87754f2f5d4e296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;

namespace XMainClient
{
	public class CGroupPlayerInfo
	{
		public ulong roleid;

		public string rolename;

		public string guild;

		public uint level;

		public uint ppt;

		public uint profession;

		public int degree;

		public uint uid;

		public List<uint> setid = new List<uint>();
	}
}