2022-03-01 14:28:58 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
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";
|
2022-05-15 09:23:55 +08:00
|
|
|
|
public static string OnlineUser = "onlineUser";
|
2023-12-01 15:39:07 +08:00
|
|
|
|
|
2022-03-01 14:28:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|