xcx_temp_api/Infrastructure/Constant/HubsConstant.cs
2023-06-02 21:15:33 +08:00

18 lines
464 B
C#

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";
public static string OnlineUser = "onlineUser";
}
}