mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
16 lines
386 B
C#
16 lines
386 B
C#
using Volo.Abp.Application;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.SettingManagement;
|
|
using Volo.Abp.Timing;
|
|
|
|
namespace Yi.Framework.SettingManagement.Application;
|
|
|
|
[DependsOn(
|
|
typeof(AbpDddApplicationModule),
|
|
typeof(AbpSettingManagementApplicationContractsModule),
|
|
typeof(AbpTimingModule)
|
|
)]
|
|
public class YiFrameworkSettingManagementApplicationModule : AbpModule
|
|
{
|
|
}
|