12 lines
272 B
C#
12 lines
272 B
C#
|
|
namespace langguanApi.Common.Redis
|
|||
|
|
{
|
|||
|
|
public class RedisKeylist
|
|||
|
|
{
|
|||
|
|
public static string UserLoginInfo = "UserLoginInfo";
|
|||
|
|
/// <summary>
|
|||
|
|
/// 缓存天气信息
|
|||
|
|
/// </summary>
|
|||
|
|
public static string Weather = "weather";
|
|||
|
|
}
|
|||
|
|
}
|