blob: 584fff6b3437e07a0214c9304c36e9dc5812995f (
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
|
using System;
using System.Collections.Generic;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "getintegralbattleInfores")]
[Serializable]
public class getintegralbattleInfores : IExtensible
{
[ProtoMember(1, Name = "battleinfo", DataFormat = DataFormat.Default)]
public List<IntegralBattle> battleinfo
{
get
{
return this._battleinfo;
}
}
[ProtoMember(2, Name = "battleTime", DataFormat = DataFormat.TwosComplement)]
public List<uint> battleTime
{
get
{
return this._battleTime;
}
}
private readonly List<IntegralBattle> _battleinfo = new List<IntegralBattle>();
private readonly List<uint> _battleTime = new List<uint>();
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|