You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
529 B
23 lines
529 B
2 years ago
|
namespace Cis.Application.Core;
|
||
|
|
||
|
public class CacheInfo
|
||
|
{
|
||
|
#region Cache Name
|
||
|
|
||
|
/// <summary>
|
||
|
/// CameraId2Ip 字典
|
||
|
/// </summary>
|
||
|
public static string CameraId2Ip { get; set; } = "CameraId2Ip";
|
||
|
|
||
|
/// <summary>
|
||
|
/// CameraIpCounts 字典
|
||
|
/// </summary>
|
||
|
public static string CameraIpCounts { get; set; } = "CameraIpCounts";
|
||
|
|
||
|
/// <summary>
|
||
|
/// CameraPtzInfos 字典
|
||
|
/// </summary>
|
||
|
public static string CameraPtzInfos { get; set; } = "CameraPtzInfos";
|
||
|
|
||
|
#endregion Cache Name
|
||
|
}
|