You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
505 B
C#

11 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Common
{
/// <summary>
/// 缓存的Key
/// </summary>
public class CacheKey
{
/// <summary>
/// 用户信息缓存
/// </summary>
public const string CurrentUser = "CurrentUser";
/// <summary>
/// 验证码缓存
/// </summary>
public const string Captcha = "Captcha";
}
}