招聘后台
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
572 B

namespace Znyc.Recruitment.Admin.Commons.Cache
{
/// <summary>
/// 缓存提供模式,使用Redis或MemoryCache
/// </summary>
public class CacheProvider
{
/// <summary>
/// 是否使用Redis
/// </summary>
public bool IsUseRedis { get; set; }
/// <summary>
/// Redis连接
/// </summary>
public string ConnectionString { get; set; }
/// <summary>
/// Redis实例名称
/// </summary>
public string InstanceName { get; set; }
}
}