14 lines
447 B
C#
14 lines
447 B
C#
namespace Infrastructure.Constant
|
|
{
|
|
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 ConnId = "connId";
|
|
}
|
|
}
|