From 5e3d6a3c8438f767bd46300f68af647ae791a2a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Tue, 1 Mar 2022 14:28:58 +0800 Subject: [PATCH] add HubsConstant.cs --- .gitignore | 1 + Infrastructure/Constant/HubsConstant.cs | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 Infrastructure/Constant/HubsConstant.cs diff --git a/.gitignore b/.gitignore index 6fd12c3..53a1570 100644 --- a/.gitignore +++ b/.gitignore @@ -269,3 +269,4 @@ __pycache__/ /ZR.Admin.WebApi/Properties/launchSettings.json /ZR.Admin.WebApi/ZRAdmin.xml /ZR.Admin.WebApi/DataProtection +/Quartz.NET.WindowsService diff --git a/Infrastructure/Constant/HubsConstant.cs b/Infrastructure/Constant/HubsConstant.cs new file mode 100644 index 0000000..ad8c040 --- /dev/null +++ b/Infrastructure/Constant/HubsConstant.cs @@ -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"; + } +}