blob: b5c86d1c786a2e5a7165fbc0ef28bb99c3c6d992 (
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 = "GuildLogType")]
public enum GuildLogType
{
[ProtoEnum(Name = "GLog_Member", Value = 1)]
GLog_Member = 1,
[ProtoEnum(Name = "GLog_CheckIn", Value = 2)]
GLog_CheckIn,
[ProtoEnum(Name = "GLog_RedBonus", Value = 3)]
GLog_RedBonus
}
}
|