summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/DHRReqOp.cs
blob: cc95fda90922c137f3fdfa3e9a0ec8b5814f614a (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 = "DHRReqOp")]
	public enum DHRReqOp
	{
		[ProtoEnum(Name = "DHR_OP_LIST", Value = 1)]
		DHR_OP_LIST = 1,
		[ProtoEnum(Name = "DHR_OP_FETCH_REWARD", Value = 2)]
		DHR_OP_FETCH_REWARD,
		[ProtoEnum(Name = "DHR_OP_WANT_BE_HELP", Value = 3)]
		DHR_OP_WANT_BE_HELP,
		[ProtoEnum(Name = "DHR_OP_WANT_NOT_HELP", Value = 4)]
		DHR_OP_WANT_NOT_HELP
	}
}