using Abp.Collections; using Abp.Dependency; namespace VberZero.Workflow; internal class VberWorkflowConfiguration : IVberWorkflowConfiguration, ISingletonDependency { public ITypeList Providers { get; } public bool IsEnabled { get; set; } public VberWorkflowConfiguration() { //默认开启注册 IsEnabled = true; Providers = new TypeList(); } }