mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
14 lines
307 B
C#
14 lines
307 B
C#
|
|
using Volo.Abp.Collections;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.SettingManagement.Domain;
|
|||
|
|
|
|||
|
|
public class SettingManagementOptions
|
|||
|
|
{
|
|||
|
|
public ITypeList<ISettingManagementProvider> Providers { get; }
|
|||
|
|
|
|||
|
|
public SettingManagementOptions()
|
|||
|
|
{
|
|||
|
|
Providers = new TypeList<ISettingManagementProvider>();
|
|||
|
|
}
|
|||
|
|
}
|