blob: 1aa414da023d4d2940a7a7dbdac7b2aa336de8a6 (
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
|
using System;
using System.ComponentModel;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "ChatArg")]
[Serializable]
public class ChatArg : IExtensible
{
[ProtoMember(1, IsRequired = false, Name = "chatinfo", DataFormat = DataFormat.Default)]
[DefaultValue(null)]
public ChatInfo chatinfo
{
get
{
return this._chatinfo;
}
set
{
this._chatinfo = value;
}
}
private ChatInfo _chatinfo = null;
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|