Files
Web_IoTBase_Sever_Prod/Common/CacheKey.cs

24 lines
499 B
C#
Raw Normal View History

2025-12-11 14:04:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LogCap.Common
{
public class CacheKey
{
public static string RoomIP_Port_Prefix = "Log_IP_Port";
public static string Key = "monitor_host";
public static string MonitorLogPrefix = "AllLogKey_";
public static string MQTTValidatePrefix = "MQTTValidatePrefix_";
public static string DeviceInfo = "DeviceInfo";
}
}