blob: 9a5fce6df214a91a6aedaa1023422da33594d13c (
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 = "LogoutType")]
public enum LogoutType
{
[ProtoEnum(Name = "LOGOUT_ACCOUNT_NORMAL", Value = 1)]
LOGOUT_ACCOUNT_NORMAL = 1,
[ProtoEnum(Name = "LOGOUT_RELOGIN_KICK_ACCOUNT", Value = 2)]
LOGOUT_RELOGIN_KICK_ACCOUNT,
[ProtoEnum(Name = "LOGOUT_IDIP_KICK_ACCOUNT", Value = 3)]
LOGOUT_IDIP_KICK_ACCOUNT,
[ProtoEnum(Name = "LOGOUT_RETURN_SELECT_ROLE", Value = 4)]
LOGOUT_RETURN_SELECT_ROLE,
[ProtoEnum(Name = "LOGOUT_CHANGEPROFESSION", Value = 5)]
LOGOUT_CHANGEPROFESSION
}
}
|