blob: 99e0dd7ac300db3ce5dddcc45bea57be287262c6 (
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 = "EMentorTaskStatus")]
public enum EMentorTaskStatus
{
[ProtoEnum(Name = "EMentorTask_UnComplete", Value = 1)]
EMentorTask_UnComplete = 1,
[ProtoEnum(Name = "EMentorTask_CanReport", Value = 2)]
EMentorTask_CanReport,
[ProtoEnum(Name = "EMentorTask_AlreadyReport", Value = 3)]
EMentorTask_AlreadyReport,
[ProtoEnum(Name = "EMentorTask_ConfirmReport", Value = 4)]
EMentorTask_ConfirmReport,
[ProtoEnum(Name = "EMentorTask_CompleteBefore", Value = 5)]
EMentorTask_CompleteBefore,
[ProtoEnum(Name = "EMentorTask_Max", Value = 6)]
EMentorTask_Max
}
}
|