StableVersion4.3/HL_FristAidPlatform_Frame/PropertyCommon.cs

14 lines
396 B
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
using System.Collections.Generic;
namespace HL_FristAidPlatform_Frame
{
public static class PropertyCommon
{
public static string ConnectionString { get; set; }
public static string ConnectionZenTaoString { get; set; }
public static Dictionary<string, string> SignalRConnections { get; set; } = new Dictionary<string, string>();//userid,connectionid
}
}