blob: 8e3e8ce9c318bb6382910f413f076c5304dfe12e (
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 = "MentorRelationStatus")]
public enum MentorRelationStatus
{
[ProtoEnum(Name = "MentorRelationIn", Value = 1)]
MentorRelationIn = 1,
[ProtoEnum(Name = "MentorRelationComplete", Value = 2)]
MentorRelationComplete,
[ProtoEnum(Name = "MentorRelationBreakApply", Value = 3)]
MentorRelationBreakApply,
[ProtoEnum(Name = "MentorRelationBreak", Value = 4)]
MentorRelationBreak,
[ProtoEnum(Name = "MentorRelationMax", Value = 5)]
MentorRelationMax
}
}
|