From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../KKSG/TeamRequestPlatFreind2ClientData.cs | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/TeamRequestPlatFreind2ClientData.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/TeamRequestPlatFreind2ClientData.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/TeamRequestPlatFreind2ClientData.cs b/Client/Assets/Scripts/XMainClient/KKSG/TeamRequestPlatFreind2ClientData.cs new file mode 100644 index 00000000..7bbb8472 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/TeamRequestPlatFreind2ClientData.cs @@ -0,0 +1,105 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "TeamRequestPlatFreind2ClientData")] + [Serializable] + public class TeamRequestPlatFreind2ClientData : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "userOffline", DataFormat = DataFormat.Default)] + public bool userOffline + { + get + { + return this._userOffline ?? false; + } + set + { + this._userOffline = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool userOfflineSpecified + { + get + { + return this._userOffline != null; + } + set + { + bool flag = value == (this._userOffline == null); + if (flag) + { + this._userOffline = (value ? new bool?(this.userOffline) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "openID", DataFormat = DataFormat.Default)] + public string openID + { + get + { + return this._openID ?? ""; + } + set + { + this._openID = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool openIDSpecified + { + get + { + return this._openID != null; + } + set + { + bool flag = value == (this._openID == null); + if (flag) + { + this._openID = (value ? this.openID : null); + } + } + } + + private bool? _userOffline; + + private string _openID; + + private IExtension extensionObject; + + private bool ShouldSerializeuserOffline() + { + return this.userOfflineSpecified; + } + + private void ResetuserOffline() + { + this.userOfflineSpecified = false; + } + + private bool ShouldSerializeopenID() + { + return this.openIDSpecified; + } + + private void ResetopenID() + { + this.openIDSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0