add HubsConstant.cs

This commit is contained in:
不做码农 2022-03-01 14:28:58 +08:00
parent c6d8909994
commit 5e3d6a3c84
2 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -269,3 +269,4 @@ __pycache__/
/ZR.Admin.WebApi/Properties/launchSettings.json /ZR.Admin.WebApi/Properties/launchSettings.json
/ZR.Admin.WebApi/ZRAdmin.xml /ZR.Admin.WebApi/ZRAdmin.xml
/ZR.Admin.WebApi/DataProtection /ZR.Admin.WebApi/DataProtection
/Quartz.NET.WindowsService

View File

@ -0,0 +1,16 @@
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";
}
}