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