namespace DS.Module.Core.Modules; /// /// /// public interface IDSAppModule : IApplicationInitialization { void ConfigureServices(ConfigureServicesContext context); /// /// 配置 /// /// /// 配置选项 void Configure(Action configureOptions) where TOptions : class; /// /// 服务依赖集合 /// /// /// Type[] GetDependedTypes(Type moduleType = null); bool Enable { get; set; } }