2021-04-21 18:02:01 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Infrastructure
|
2020-10-22 14:59:36 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配置项
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AppSetting
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public AppSetting()
|
|
|
|
|
{
|
|
|
|
|
SSOPassport = "http://localhost:52789";
|
|
|
|
|
Version = "";
|
|
|
|
|
UploadPath = "";
|
|
|
|
|
IdentityServerUrl = "";
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// SSO地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SSOPassport { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 版本信息
|
|
|
|
|
/// 如果为demo,则屏蔽Post请求
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据库类型 SqlServer、MySql
|
|
|
|
|
/// </summary>
|
2021-04-21 18:02:01 +08:00
|
|
|
|
public Dictionary<string, string> DbTypes { get; set; }
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
/// <summary> 附件上传路径</summary>
|
|
|
|
|
public string UploadPath { get; set; }
|
|
|
|
|
|
|
|
|
|
//identity授权的地址
|
|
|
|
|
public string IdentityServerUrl { get; set; }
|
2021-03-09 23:35:14 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Redis服务器配置
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RedisConf { get; set; }
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
//是否是Identity授权方式
|
|
|
|
|
public bool IsIdentityAuth => !string.IsNullOrEmpty(IdentityServerUrl);
|
|
|
|
|
}
|
|
|
|
|
}
|