From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XMainClient/KKSG/PayConsumeRebate.cs | 148 +++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/PayConsumeRebate.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PayConsumeRebate.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PayConsumeRebate.cs b/Client/Assets/Scripts/XMainClient/KKSG/PayConsumeRebate.cs new file mode 100644 index 00000000..64c68ca2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/PayConsumeRebate.cs @@ -0,0 +1,148 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "PayConsumeRebate")] + [Serializable] + public class PayConsumeRebate : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "consumenum", DataFormat = DataFormat.TwosComplement)] + public uint consumenum + { + get + { + return this._consumenum ?? 0u; + } + set + { + this._consumenum = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool consumenumSpecified + { + get + { + return this._consumenum != null; + } + set + { + bool flag = value == (this._consumenum == null); + if (flag) + { + this._consumenum = (value ? new uint?(this.consumenum) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "lastconsumetime", DataFormat = DataFormat.TwosComplement)] + public uint lastconsumetime + { + get + { + return this._lastconsumetime ?? 0u; + } + set + { + this._lastconsumetime = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool lastconsumetimeSpecified + { + get + { + return this._lastconsumetime != null; + } + set + { + bool flag = value == (this._lastconsumetime == null); + if (flag) + { + this._lastconsumetime = (value ? new uint?(this.lastconsumetime) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "rate", DataFormat = DataFormat.TwosComplement)] + public uint rate + { + get + { + return this._rate ?? 0u; + } + set + { + this._rate = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool rateSpecified + { + get + { + return this._rate != null; + } + set + { + bool flag = value == (this._rate == null); + if (flag) + { + this._rate = (value ? new uint?(this.rate) : null); + } + } + } + + private uint? _consumenum; + + private uint? _lastconsumetime; + + private uint? _rate; + + private IExtension extensionObject; + + private bool ShouldSerializeconsumenum() + { + return this.consumenumSpecified; + } + + private void Resetconsumenum() + { + this.consumenumSpecified = false; + } + + private bool ShouldSerializelastconsumetime() + { + return this.lastconsumetimeSpecified; + } + + private void Resetlastconsumetime() + { + this.lastconsumetimeSpecified = false; + } + + private bool ShouldSerializerate() + { + return this.rateSpecified; + } + + private void Resetrate() + { + this.rateSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0