blob: d45126d6648a3832fd41ee3e3986b5d96960749f (
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
|
using System;
using System.Collections.Generic;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "getapplyguildlistres")]
[Serializable]
public class getapplyguildlistres : IExtensible
{
[ProtoMember(1, Name = "guildlist", DataFormat = DataFormat.Default)]
public List<Integralunit> guildlist
{
get
{
return this._guildlist;
}
}
private readonly List<Integralunit> _guildlist = new List<Integralunit>();
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|