summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/DragonGroupDB.cs
blob: fe416870c372a0fab9b1c5a0f681041125149722 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using System.ComponentModel;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "DragonGroupDB")]
	[Serializable]
	public class DragonGroupDB : IExtensible
	{
		[ProtoMember(1, IsRequired = false, Name = "record", DataFormat = DataFormat.Default)]
		[DefaultValue(null)]
		public DragonGroupRecordS2C record
		{
			get
			{
				return this._record;
			}
			set
			{
				this._record = value;
			}
		}

		[ProtoMember(2, IsRequired = false, Name = "rolelist", DataFormat = DataFormat.Default)]
		[DefaultValue(null)]
		public DragonGroupRoleListS2C rolelist
		{
			get
			{
				return this._rolelist;
			}
			set
			{
				this._rolelist = value;
			}
		}

		private DragonGroupRecordS2C _record = null;

		private DragonGroupRoleListS2C _rolelist = null;

		private IExtension extensionObject;

		IExtension IExtensible.GetExtensionObject(bool createIfMissing)
		{
			return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
		}
	}
}