using Volo.Abp.Collections; namespace NPin.Framework.SettingManagement.Domain.Options; public class SettingManagementOptions { public ITypeList Providers { get; } public SettingManagementOptions() { Providers = new TypeList(); } }