summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/GuildBindStatus.cs
blob: cd47bc00445f9dd0209d5ff772b75669dd6590a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "GuildBindStatus")]
	public enum GuildBindStatus
	{
		[ProtoEnum(Name = "GBS_NotBind", Value = 1)]
		GBS_NotBind = 1,
		[ProtoEnum(Name = "GBS_Owner", Value = 2)]
		GBS_Owner,
		[ProtoEnum(Name = "GBS_Admin", Value = 3)]
		GBS_Admin,
		[ProtoEnum(Name = "GBS_Member", Value = 4)]
		GBS_Member,
		[ProtoEnum(Name = "GBS_NotMember", Value = 5)]
		GBS_NotMember
	}
}