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