summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/WeddingInviteOperType.cs
blob: a9edfa360dad96b6f44c134a8a2ddfd33aa60283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "WeddingInviteOperType")]
	public enum WeddingInviteOperType
	{
		[ProtoEnum(Name = "Wedding_Invite", Value = 1)]
		Wedding_Invite = 1,
		[ProtoEnum(Name = "Wedding_Apply", Value = 2)]
		Wedding_Apply,
		[ProtoEnum(Name = "Wedding_AgreeApply", Value = 3)]
		Wedding_AgreeApply,
		[ProtoEnum(Name = "Wedding_DisagreeApply", Value = 4)]
		Wedding_DisagreeApply,
		[ProtoEnum(Name = "Wedding_PermitStranger", Value = 5)]
		Wedding_PermitStranger,
		[ProtoEnum(Name = "Wedding_ForbidStranger", Value = 6)]
		Wedding_ForbidStranger,
		[ProtoEnum(Name = "Wedding_CarCutScene", Value = 7)]
		Wedding_CarCutScene,
		[ProtoEnum(Name = "Wedding_Start", Value = 8)]
		Wedding_Start
	}
}