using Microsoft.Extensions.Options; using System; using System.Collections.Generic; using System.Text; namespace Fuel.Infrastructure.Extension { public class RedisOptions { public RedisOptions Value =>this; /// /// url 地址 /// public string ConnectionString { get; set; } /// /// 密码 /// public string Password { get; set; } /// /// 数据库编号 /// public int DataBase { get; set; } /// /// 链接名称 /// public string KeyName { get; set; } /// /// 缓存key 的前缀 /// public string PrefixKey { get; set; } public int Default { get; set; } /// /// 哨兵地址 /// public string[] Sentinels { get; set; } } }