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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "ChatOfflineNotify")]
[Serializable]
public class ChatOfflineNotify : IExtensible
{
[ProtoMember(1, Name = "rolechat", DataFormat = DataFormat.Default)]
public List<ChatInfo> rolechat
{
get
{
return this._rolechat;
}
}
[ProtoMember(2, Name = "guildchat", DataFormat = DataFormat.Default)]
public List<ChatInfo> guildchat
{
get
{
return this._guildchat;
}
}
[ProtoMember(3, Name = "worldchat", DataFormat = DataFormat.Default)]
public List<ChatInfo> worldchat
{
get
{
return this._worldchat;
}
}
[ProtoMember(4, Name = "teamchat", DataFormat = DataFormat.Default)]
public List<ChatInfo> teamchat
{
get
{
return this._teamchat;
}
}
[ProtoMember(5, IsRequired = false, Name = "privatechatlist", DataFormat = DataFormat.Default)]
[DefaultValue(null)]
public PrivateChatList privatechatlist
{
get
{
return this._privatechatlist;
}
set
{
this._privatechatlist = value;
}
}
[ProtoMember(6, Name = "partnerchat", DataFormat = DataFormat.Default)]
public List<ChatInfo> partnerchat
{
get
{
return this._partnerchat;
}
}
[ProtoMember(7, Name = "groupchat", DataFormat = DataFormat.Default)]
public List<ChatInfo> groupchat
{
get
{
return this._groupchat;
}
}
private readonly List<ChatInfo> _rolechat = new List<ChatInfo>();
private readonly List<ChatInfo> _guildchat = new List<ChatInfo>();
private readonly List<ChatInfo> _worldchat = new List<ChatInfo>();
private readonly List<ChatInfo> _teamchat = new List<ChatInfo>();
private PrivateChatList _privatechatlist = null;
private readonly List<ChatInfo> _partnerchat = new List<ChatInfo>();
private readonly List<ChatInfo> _groupchat = new List<ChatInfo>();
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|