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