blob: 7132d2619e624f5623f6e095509c08c4589c40c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "EMentorRelationPosition")]
public enum EMentorRelationPosition
{
[ProtoEnum(Name = "EMentorPosMaster", Value = 1)]
EMentorPosMaster = 1,
[ProtoEnum(Name = "EMentorPosStudent", Value = 2)]
EMentorPosStudent,
[ProtoEnum(Name = "EMentorPosMax", Value = 3)]
EMentorPosMax
}
}
|