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/GuildFatigueRes.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GuildFatigueRes.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/GuildFatigueRes.cs | 148 |
1 files changed, 148 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GuildFatigueRes.cs b/Client/Assets/Scripts/XMainClient/KKSG/GuildFatigueRes.cs new file mode 100644 index 00000000..d4f19d84 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GuildFatigueRes.cs @@ -0,0 +1,148 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "GuildFatigueRes")]
+ [Serializable]
+ public class GuildFatigueRes : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "result", DataFormat = DataFormat.TwosComplement)]
+ public ErrorCode result
+ {
+ get
+ {
+ return this._result ?? ErrorCode.ERR_SUCCESS;
+ }
+ set
+ {
+ this._result = new ErrorCode?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool resultSpecified
+ {
+ get
+ {
+ return this._result != null;
+ }
+ set
+ {
+ bool flag = value == (this._result == null);
+ if (flag)
+ {
+ this._result = (value ? new ErrorCode?(this.result) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "totalsend", DataFormat = DataFormat.TwosComplement)]
+ public int totalsend
+ {
+ get
+ {
+ return this._totalsend ?? 0;
+ }
+ set
+ {
+ this._totalsend = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool totalsendSpecified
+ {
+ get
+ {
+ return this._totalsend != null;
+ }
+ set
+ {
+ bool flag = value == (this._totalsend == null);
+ if (flag)
+ {
+ this._totalsend = (value ? new int?(this.totalsend) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "totalrecv", DataFormat = DataFormat.TwosComplement)]
+ public int totalrecv
+ {
+ get
+ {
+ return this._totalrecv ?? 0;
+ }
+ set
+ {
+ this._totalrecv = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool totalrecvSpecified
+ {
+ get
+ {
+ return this._totalrecv != null;
+ }
+ set
+ {
+ bool flag = value == (this._totalrecv == null);
+ if (flag)
+ {
+ this._totalrecv = (value ? new int?(this.totalrecv) : null);
+ }
+ }
+ }
+
+ private ErrorCode? _result;
+
+ private int? _totalsend;
+
+ private int? _totalrecv;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeresult()
+ {
+ return this.resultSpecified;
+ }
+
+ private void Resetresult()
+ {
+ this.resultSpecified = false;
+ }
+
+ private bool ShouldSerializetotalsend()
+ {
+ return this.totalsendSpecified;
+ }
+
+ private void Resettotalsend()
+ {
+ this.totalsendSpecified = false;
+ }
+
+ private bool ShouldSerializetotalrecv()
+ {
+ return this.totalrecvSpecified;
+ }
+
+ private void Resettotalrecv()
+ {
+ this.totalrecvSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|