summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/AuctionReqType.cs
blob: 3424e184b13d2c39cfae936e8afc2e3fab0ea04e (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 = "AuctionReqType")]
	public enum AuctionReqType
	{
		[ProtoEnum(Name = "AUCTION_ONSALE", Value = 1)]
		AUCTION_ONSALE = 1,
		[ProtoEnum(Name = "AUCTION_OUTSALE", Value = 2)]
		AUCTION_OUTSALE,
		[ProtoEnum(Name = "AUCTION_BUYNOW", Value = 3)]
		AUCTION_BUYNOW
	}
}