summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/GuildDonateRankInfo.cs
blob: dd448fbddc596b59129347754d552118a3d3de92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

namespace XMainClient
{
	public class GuildDonateRankInfo
	{
		public ulong roleID;

		public uint todayCount;

		public uint totalCount;

		public uint lastTime;

		public string roleName;

		public uint level;

		public uint profession;
	}
}