blob: 62c094e18405c03ea31b14c496178a205b230c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "PartnerOperType")]
public enum PartnerOperType
{
[ProtoEnum(Name = "POT_Normal", Value = 1)]
POT_Normal = 1,
[ProtoEnum(Name = "POT_Liveness", Value = 2)]
POT_Liveness,
[ProtoEnum(Name = "POT_Leave", Value = 3)]
POT_Leave,
[ProtoEnum(Name = "POT_ApplyLeave", Value = 4)]
POT_ApplyLeave,
[ProtoEnum(Name = "POT_CancelLeave", Value = 5)]
POT_CancelLeave,
[ProtoEnum(Name = "POT_Dissolve", Value = 6)]
POT_Dissolve
}
}
|