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

namespace KKSG
{
	[ProtoContract(Name = "ReadAccountDataType")]
	public enum ReadAccountDataType
	{
		[ProtoEnum(Name = "READ_ACCOUNT_DATA_LOGIN", Value = 1)]
		READ_ACCOUNT_DATA_LOGIN = 1,
		[ProtoEnum(Name = "READ_ACCOUNT_DATA_RETURN_SELECT_ROLE", Value = 2)]
		READ_ACCOUNT_DATA_RETURN_SELECT_ROLE,
		[ProtoEnum(Name = "READ_ACCOUNT_DATA_IDIP", Value = 3)]
		READ_ACCOUNT_DATA_IDIP
	}
}