summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/NotifyMarriageApplyData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/NotifyMarriageApplyData.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/NotifyMarriageApplyData.cs50
1 files changed, 50 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/NotifyMarriageApplyData.cs b/Client/Assets/Scripts/XMainClient/KKSG/NotifyMarriageApplyData.cs
new file mode 100644
index 00000000..df5f134e
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/NotifyMarriageApplyData.cs
@@ -0,0 +1,50 @@
+using System;
+using System.ComponentModel;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "NotifyMarriageApplyData")]
+ [Serializable]
+ public class NotifyMarriageApplyData : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "applyInfo", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public MarriageApplyInfo applyInfo
+ {
+ get
+ {
+ return this._applyInfo;
+ }
+ set
+ {
+ this._applyInfo = value;
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "response", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public MarriageApplyResponse response
+ {
+ get
+ {
+ return this._response;
+ }
+ set
+ {
+ this._response = value;
+ }
+ }
+
+ private MarriageApplyInfo _applyInfo = null;
+
+ private MarriageApplyResponse _response = null;
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}