summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/RoleStateReport.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/RoleStateReport.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/RoleStateReport.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/RoleStateReport.cs b/Client/Assets/Scripts/XMainClient/KKSG/RoleStateReport.cs
new file mode 100644
index 00000000..ff88b200
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/RoleStateReport.cs
@@ -0,0 +1,51 @@
+using System;
+using System.Collections.Generic;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "RoleStateReport")]
+ [Serializable]
+ public class RoleStateReport : IExtensible
+ {
+ [ProtoMember(1, Name = "roleid", DataFormat = DataFormat.TwosComplement)]
+ public List<ulong> roleid
+ {
+ get
+ {
+ return this._roleid;
+ }
+ }
+
+ [ProtoMember(2, Name = "state", DataFormat = DataFormat.TwosComplement)]
+ public List<uint> state
+ {
+ get
+ {
+ return this._state;
+ }
+ }
+
+ [ProtoMember(3, Name = "timelastlogin", DataFormat = DataFormat.TwosComplement)]
+ public List<uint> timelastlogin
+ {
+ get
+ {
+ return this._timelastlogin;
+ }
+ }
+
+ private readonly List<ulong> _roleid = new List<ulong>();
+
+ private readonly List<uint> _state = new List<uint>();
+
+ private readonly List<uint> _timelastlogin = new List<uint>();
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}