25 lines
553 B
C#
25 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudBuilder.Core.Application.Options
|
|
{
|
|
/// <summary>
|
|
/// Redis选项
|
|
/// </summary>
|
|
public class RedisOptions
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置 Redis连接配置
|
|
/// </summary>
|
|
public string Configuration { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置 Redis实例名称
|
|
/// </summary>
|
|
public string InstanceName { get; set; }
|
|
}
|
|
}
|