17 lines
334 B
C#
17 lines
334 B
C#
|
|
using Volo.Abp.Modularity;
|
|||
|
|
using Volo.Abp.SettingManagement;
|
|||
|
|
|
|||
|
|
namespace Kurs.Settings;
|
|||
|
|
|
|||
|
|
[DependsOn(
|
|||
|
|
typeof(AbpSettingManagementDomainModule),
|
|||
|
|
typeof(SettingsDomainSharedModule)
|
|||
|
|
)]
|
|||
|
|
public class SettingsDomainModule : AbpModule
|
|||
|
|
{
|
|||
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|