blob: 02aa161850814cbfca6925495ac61f0e61329a61 (
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
51
|
using System;
using System.Collections.Generic;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "SpActivityOffsetDay")]
[Serializable]
public class SpActivityOffsetDay : IExtensible
{
[ProtoMember(1, Name = "actid", DataFormat = DataFormat.TwosComplement)]
public List<uint> actid
{
get
{
return this._actid;
}
}
[ProtoMember(2, Name = "offsetday", DataFormat = DataFormat.TwosComplement)]
public List<int> offsetday
{
get
{
return this._offsetday;
}
}
[ProtoMember(3, Name = "offsettime", DataFormat = DataFormat.TwosComplement)]
public List<uint> offsettime
{
get
{
return this._offsettime;
}
}
private readonly List<uint> _actid = new List<uint>();
private readonly List<int> _offsetday = new List<int>();
private readonly List<uint> _offsettime = new List<uint>();
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|