namespace Admin.Core.Common.Configs
{
///
/// 应用配置
///
public class AppConfig
{
///
/// Swagger文档
///
public bool Swagger { get; set; }
///
/// Api地址,默认 http://*:8081
///
public string Urls { get; set; } = "http://*:8081";
///
/// Aop配置
///
public AopConfig Aop { get; set; }
///
/// 日志配置
///
public LogConfig Log { get; set; }
///
/// 验证码配置
///
public VarifyCodeConfig VarifyCode { get; set; }
}
///
/// Aop配置
///
public class AopConfig
{
///
/// 事物
///
public bool Transaction { get; set; }
}
///
/// 日志配置
///
public class LogConfig
{
///
/// 操作日志
///
public bool Operation { get; set; }
}
///
/// 验证码配置
///
public class VarifyCodeConfig
{
///
/// 操作日志
///
public string[] Font { get; set; }
}
}