1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using System; using ProtoBuf; namespace KKSG { [ProtoContract(Name = "TeamMemberType")] public enum TeamMemberType { [ProtoEnum(Name = "TMT_NORMAL", Value = 1)] TMT_NORMAL = 1, [ProtoEnum(Name = "TMT_HELPER", Value = 2)] TMT_HELPER, [ProtoEnum(Name = "TMT_USETICKET", Value = 3)] TMT_USETICKET } }