namespace langguanApi.Common.Redis
{
public class RedisKeylist
{
public static string UserLoginInfo = "UserLoginInfo";
///
/// 缓存天气信息
///
public static string Weather = "weather";
///
/// 缓存ARI数据
///
public static string AriQuality = "arqulaty";
///
/// 首页趋势数据
///
public static string Trend = "tred";
///
/// 缓存今日数据
///
public static string Today = "today";
///
/// 缓存清洁数据
///
public static string CleanData = "cleandata";
}
}