diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/BuyGoldFatInfo.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/BuyGoldFatInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/BuyGoldFatInfo.cs | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/BuyGoldFatInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/BuyGoldFatInfo.cs new file mode 100644 index 00000000..be0e398f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/BuyGoldFatInfo.cs @@ -0,0 +1,176 @@ +using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "BuyGoldFatInfo")]
+ [Serializable]
+ public class BuyGoldFatInfo : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "day", DataFormat = DataFormat.TwosComplement)]
+ public uint day
+ {
+ get
+ {
+ return this._day ?? 0u;
+ }
+ set
+ {
+ this._day = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool daySpecified
+ {
+ get
+ {
+ return this._day != null;
+ }
+ set
+ {
+ bool flag = value == (this._day == null);
+ if (flag)
+ {
+ this._day = (value ? new uint?(this.day) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "BuyGoldCount", DataFormat = DataFormat.TwosComplement)]
+ public int BuyGoldCount
+ {
+ get
+ {
+ return this._BuyGoldCount ?? 0;
+ }
+ set
+ {
+ this._BuyGoldCount = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool BuyGoldCountSpecified
+ {
+ get
+ {
+ return this._BuyGoldCount != null;
+ }
+ set
+ {
+ bool flag = value == (this._BuyGoldCount == null);
+ if (flag)
+ {
+ this._BuyGoldCount = (value ? new int?(this.BuyGoldCount) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, Name = "BuyFatigueCount", DataFormat = DataFormat.TwosComplement)]
+ public List<int> BuyFatigueCount
+ {
+ get
+ {
+ return this._BuyFatigueCount;
+ }
+ }
+
+ [ProtoMember(4, IsRequired = false, Name = "BuyDragonCount", DataFormat = DataFormat.TwosComplement)]
+ public int BuyDragonCount
+ {
+ get
+ {
+ return this._BuyDragonCount ?? 0;
+ }
+ set
+ {
+ this._BuyDragonCount = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool BuyDragonCountSpecified
+ {
+ get
+ {
+ return this._BuyDragonCount != null;
+ }
+ set
+ {
+ bool flag = value == (this._BuyDragonCount == null);
+ if (flag)
+ {
+ this._BuyDragonCount = (value ? new int?(this.BuyDragonCount) : null);
+ }
+ }
+ }
+
+ [ProtoMember(5, IsRequired = false, Name = "backflow", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public BackFlowBuy backflow
+ {
+ get
+ {
+ return this._backflow;
+ }
+ set
+ {
+ this._backflow = value;
+ }
+ }
+
+ private uint? _day;
+
+ private int? _BuyGoldCount;
+
+ private readonly List<int> _BuyFatigueCount = new List<int>();
+
+ private int? _BuyDragonCount;
+
+ private BackFlowBuy _backflow = null;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeday()
+ {
+ return this.daySpecified;
+ }
+
+ private void Resetday()
+ {
+ this.daySpecified = false;
+ }
+
+ private bool ShouldSerializeBuyGoldCount()
+ {
+ return this.BuyGoldCountSpecified;
+ }
+
+ private void ResetBuyGoldCount()
+ {
+ this.BuyGoldCountSpecified = false;
+ }
+
+ private bool ShouldSerializeBuyDragonCount()
+ {
+ return this.BuyDragonCountSpecified;
+ }
+
+ private void ResetBuyDragonCount()
+ {
+ this.BuyDragonCountSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|