using Abp.Collections; using Abp.Dependency; namespace VberZero.Workflow.StepBodies { internal class VberStepBodyConfiguration : IVberStepBodyConfiguration, ISingletonDependency { public ITypeList Providers { get; } public bool IsEnabled { get; set; } public VberStepBodyConfiguration() { Providers = new TypeList(); IsEnabled = true; } } }