namespace Admin.Core.Common.Configs { /// /// 应用配置 /// public class AppConfig { /// /// Swagger文档 /// public bool Swagger { get; set; } /// /// Api地址,默认 http://*:8081 /// public string Urls { get; set; } = "http://*:8081"; public AopConfig Aop { get; set; } } public class AopConfig { /// /// 事物 /// public bool Transaction { get; set; } } }