mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00
28 lines
721 B
C#
28 lines
721 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FunGame.Core.Api.Model.Enum
|
|
{
|
|
public static class SocketEnums
|
|
{
|
|
public enum Type
|
|
{
|
|
GetNotice = 1,
|
|
Login = 2,
|
|
CheckLogin = 3,
|
|
Logout = 4,
|
|
HeartBeat = 5
|
|
}
|
|
|
|
public const string TYPE_UNKNOWN = "Unknown Type";
|
|
public const string TYPE_GetNotice = "GetNotice";
|
|
public const string TYPE_Login = "Login";
|
|
public const string TYPE_CheckLogin = "CheckLogin";
|
|
public const string TYPE_Logout = "Logout";
|
|
public const string TYPE_HeartBeat = "HeartBeat";
|
|
}
|
|
}
|