diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PartnerLivenessItem.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/PartnerLivenessItem.cs | 234 |
1 files changed, 234 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PartnerLivenessItem.cs b/Client/Assets/Scripts/XMainClient/KKSG/PartnerLivenessItem.cs new file mode 100644 index 00000000..50f5c242 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/PartnerLivenessItem.cs @@ -0,0 +1,234 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "PartnerLivenessItem")]
+ [Serializable]
+ public class PartnerLivenessItem : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "roleid", DataFormat = DataFormat.TwosComplement)]
+ public ulong roleid
+ {
+ get
+ {
+ return this._roleid ?? 0UL;
+ }
+ set
+ {
+ this._roleid = new ulong?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool roleidSpecified
+ {
+ get
+ {
+ return this._roleid != null;
+ }
+ set
+ {
+ bool flag = value == (this._roleid == null);
+ if (flag)
+ {
+ this._roleid = (value ? new ulong?(this.roleid) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "actid", DataFormat = DataFormat.TwosComplement)]
+ public uint actid
+ {
+ get
+ {
+ return this._actid ?? 0u;
+ }
+ set
+ {
+ this._actid = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool actidSpecified
+ {
+ get
+ {
+ return this._actid != null;
+ }
+ set
+ {
+ bool flag = value == (this._actid == null);
+ if (flag)
+ {
+ this._actid = (value ? new uint?(this.actid) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "value", DataFormat = DataFormat.TwosComplement)]
+ public uint value
+ {
+ get
+ {
+ return this._value ?? 0u;
+ }
+ set
+ {
+ this._value = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool valueSpecified
+ {
+ get
+ {
+ return this._value != null;
+ }
+ set
+ {
+ bool flag = value == (this._value == null);
+ if (flag)
+ {
+ this._value = (value ? new uint?(this.value) : null);
+ }
+ }
+ }
+
+ [ProtoMember(4, IsRequired = false, Name = "time", DataFormat = DataFormat.TwosComplement)]
+ public uint time
+ {
+ get
+ {
+ return this._time ?? 0u;
+ }
+ set
+ {
+ this._time = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool timeSpecified
+ {
+ get
+ {
+ return this._time != null;
+ }
+ set
+ {
+ bool flag = value == (this._time == null);
+ if (flag)
+ {
+ this._time = (value ? new uint?(this.time) : null);
+ }
+ }
+ }
+
+ [ProtoMember(5, IsRequired = false, Name = "name", DataFormat = DataFormat.Default)]
+ public string name
+ {
+ get
+ {
+ return this._name ?? "";
+ }
+ set
+ {
+ this._name = value;
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool nameSpecified
+ {
+ get
+ {
+ return this._name != null;
+ }
+ set
+ {
+ bool flag = value == (this._name == null);
+ if (flag)
+ {
+ this._name = (value ? this.name : null);
+ }
+ }
+ }
+
+ private ulong? _roleid;
+
+ private uint? _actid;
+
+ private uint? _value;
+
+ private uint? _time;
+
+ private string _name;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeroleid()
+ {
+ return this.roleidSpecified;
+ }
+
+ private void Resetroleid()
+ {
+ this.roleidSpecified = false;
+ }
+
+ private bool ShouldSerializeactid()
+ {
+ return this.actidSpecified;
+ }
+
+ private void Resetactid()
+ {
+ this.actidSpecified = false;
+ }
+
+ private bool ShouldSerializevalue()
+ {
+ return this.valueSpecified;
+ }
+
+ private void Resetvalue()
+ {
+ this.valueSpecified = false;
+ }
+
+ private bool ShouldSerializetime()
+ {
+ return this.timeSpecified;
+ }
+
+ private void Resettime()
+ {
+ this.timeSpecified = false;
+ }
+
+ private bool ShouldSerializename()
+ {
+ return this.nameSpecified;
+ }
+
+ private void Resetname()
+ {
+ this.nameSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|