diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GetGuildBonusRewardResult.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/GetGuildBonusRewardResult.cs | 148 |
1 files changed, 148 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GetGuildBonusRewardResult.cs b/Client/Assets/Scripts/XMainClient/KKSG/GetGuildBonusRewardResult.cs new file mode 100644 index 00000000..a430bb2d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GetGuildBonusRewardResult.cs @@ -0,0 +1,148 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "GetGuildBonusRewardResult")]
+ [Serializable]
+ public class GetGuildBonusRewardResult : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "getValue", DataFormat = DataFormat.TwosComplement)]
+ public uint getValue
+ {
+ get
+ {
+ return this._getValue ?? 0u;
+ }
+ set
+ {
+ this._getValue = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool getValueSpecified
+ {
+ get
+ {
+ return this._getValue != null;
+ }
+ set
+ {
+ bool flag = value == (this._getValue == null);
+ if (flag)
+ {
+ this._getValue = (value ? new uint?(this.getValue) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "errorcode", DataFormat = DataFormat.TwosComplement)]
+ public ErrorCode errorcode
+ {
+ get
+ {
+ return this._errorcode ?? ErrorCode.ERR_SUCCESS;
+ }
+ set
+ {
+ this._errorcode = new ErrorCode?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool errorcodeSpecified
+ {
+ get
+ {
+ return this._errorcode != null;
+ }
+ set
+ {
+ bool flag = value == (this._errorcode == null);
+ if (flag)
+ {
+ this._errorcode = (value ? new ErrorCode?(this.errorcode) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "bonusType", DataFormat = DataFormat.TwosComplement)]
+ public int bonusType
+ {
+ get
+ {
+ return this._bonusType ?? 0;
+ }
+ set
+ {
+ this._bonusType = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool bonusTypeSpecified
+ {
+ get
+ {
+ return this._bonusType != null;
+ }
+ set
+ {
+ bool flag = value == (this._bonusType == null);
+ if (flag)
+ {
+ this._bonusType = (value ? new int?(this.bonusType) : null);
+ }
+ }
+ }
+
+ private uint? _getValue;
+
+ private ErrorCode? _errorcode;
+
+ private int? _bonusType;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializegetValue()
+ {
+ return this.getValueSpecified;
+ }
+
+ private void ResetgetValue()
+ {
+ this.getValueSpecified = false;
+ }
+
+ private bool ShouldSerializeerrorcode()
+ {
+ return this.errorcodeSpecified;
+ }
+
+ private void Reseterrorcode()
+ {
+ this.errorcodeSpecified = false;
+ }
+
+ private bool ShouldSerializebonusType()
+ {
+ return this.bonusTypeSpecified;
+ }
+
+ private void ResetbonusType()
+ {
+ this.bonusTypeSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|