blob: a04b0f04feb6db68cb5409e1a056d293d839b5ec (
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
{
	internal class XGuildRedPacketDetail
	{
		public XGuildRedPacketBrief brif = new XGuildRedPacketBrief();
		public int itemTotalCount;
		public uint getTotalCount;
		public int getCount;
		public string content;
		public ulong leaderID;
		public ulong luckestID;
		public bool canThank;
		public List<ILogData> logList = new List<ILogData>();
	}
}
 |