diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/NoticeGuildLadderStart.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/NoticeGuildLadderStart.cs | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/NoticeGuildLadderStart.cs b/Client/Assets/Scripts/XMainClient/KKSG/NoticeGuildLadderStart.cs new file mode 100644 index 00000000..b903b7b2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/NoticeGuildLadderStart.cs @@ -0,0 +1,62 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "NoticeGuildLadderStart")]
+ [Serializable]
+ public class NoticeGuildLadderStart : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "isstart", DataFormat = DataFormat.Default)]
+ public bool isstart
+ {
+ get
+ {
+ return this._isstart ?? false;
+ }
+ set
+ {
+ this._isstart = new bool?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool isstartSpecified
+ {
+ get
+ {
+ return this._isstart != null;
+ }
+ set
+ {
+ bool flag = value == (this._isstart == null);
+ if (flag)
+ {
+ this._isstart = (value ? new bool?(this.isstart) : null);
+ }
+ }
+ }
+
+ private bool? _isstart;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeisstart()
+ {
+ return this.isstartSpecified;
+ }
+
+ private void Resetisstart()
+ {
+ this.isstartSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|