diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/MentorSelfInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/MentorSelfInfo.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/MentorSelfInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/MentorSelfInfo.cs new file mode 100644 index 00000000..94e218af --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/MentorSelfInfo.cs @@ -0,0 +1,29 @@ +using System;
+using System.Collections.Generic;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "MentorSelfInfo")]
+ [Serializable]
+ public class MentorSelfInfo : IExtensible
+ {
+ [ProtoMember(1, Name = "selfTaskList", DataFormat = DataFormat.Default)]
+ public List<OneMentorTaskInfo> selfTaskList
+ {
+ get
+ {
+ return this._selfTaskList;
+ }
+ }
+
+ private readonly List<OneMentorTaskInfo> _selfTaskList = new List<OneMentorTaskInfo>();
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|