Files

13 lines
348 B
C#
Raw Permalink Normal View History

2024-06-07 11:04:26 +08:00
namespace Infrastructure.Constant
2022-03-01 14:28:58 +08:00
{
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";
2024-06-07 11:04:26 +08:00
2022-03-01 14:28:58 +08:00
}
}