2023-09-06 20:56:07 +08:00

15 lines
500 B
C#

namespace ZR.ServiceCore.Signalr
{
public class HubsConstant
{
private const string V = "receiveNotice";
public static string ReceiveNotice = V;
public static string OnlineNum = "onlineNum";
public static string MoreNotice = "moreNotice";
public static string OnlineUser = "onlineUser";
public static string LockUser = "lockUser";
public static string ForceUser = "forceUser";
public static string ConnId = "connId";
}
}