Light12306/ChatRoomServer.Main/Entities/SystemMessageType.cs

16 lines
266 B
C#
Raw Normal View History

2015-07-08 17:24:45 +08:00
namespace ChatRoomServer.Main.Entities
{
enum SystemMessageType
{
Unknown = 0,
UserEnter = 1,
UserExit = 2,
Disconnect = 3,
UpdateStat = 4,
SendFailed = 5,
UpdateOnlineCount = 6,
OperationBlocked = 7,
ReportAbuse = 8,
ReportAbuseResult = 9
}
}