using System; using System.Collections.Generic; using System.Text; namespace BarCode.Web.Domain.Options { public class AppOptions { /// /// 数据库 /// public string DBConnectionString { get; set; } /// /// redis /// public string RedisConnectionString { get; set; } /// /// 单点数据请求地址-后端使用接口地址 /// public string SingleBaseUrl { get; set; } /// /// redis数据目录 /// public string RedisDirectory { get; set; } /// /// 数据库类型 /// public string DBType { get; set; } /// /// 是否允许缓存 /// public bool AllowCache { get; set; } /// /// 公司ID /// public int CompanyId { get; set; } } }