12345678910111213141516171819202122232425262728 |
- namespace Admin.Core.Common.Configs
- {
-
-
-
- public class AppConfig
- {
-
-
-
- public bool Swagger { get; set; }
-
-
-
- public string Urls { get; set; } = "http://*:8081";
- public AopConfig Aop { get; set; }
- }
- public class AopConfig
- {
-
-
-
- public bool Transaction { get; set; }
- }
- }
|