diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/ActivityRoleNotify.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/ActivityRoleNotify.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/ActivityRoleNotify.cs b/Client/Assets/Scripts/XMainClient/KKSG/ActivityRoleNotify.cs new file mode 100644 index 00000000..22ce678e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/ActivityRoleNotify.cs @@ -0,0 +1,34 @@ +using System;
+using System.ComponentModel;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "ActivityRoleNotify")]
+ [Serializable]
+ public class ActivityRoleNotify : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "ActivityRecord", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public ActivityRecord ActivityRecord
+ {
+ get
+ {
+ return this._ActivityRecord;
+ }
+ set
+ {
+ this._ActivityRecord = value;
+ }
+ }
+
+ private ActivityRecord _ActivityRecord = null;
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|