blob: ae1ee8e7fd5979301fdedbb460e727449537d441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "MentorApplyStatus")]
public enum MentorApplyStatus
{
[ProtoEnum(Name = "MentorApplyMaster", Value = 1)]
MentorApplyMaster = 1,
[ProtoEnum(Name = "MentorApplyStudent", Value = 2)]
MentorApplyStudent,
[ProtoEnum(Name = "MentorApplyHas", Value = 3)]
MentorApplyHas,
[ProtoEnum(Name = "MentorApplyStatusMax", Value = 4)]
MentorApplyStatusMax
}
}
|