Files

16 lines
414 B
C#
Raw Permalink Normal View History

2024-02-16 15:40:13 +08:00
using Volo.Abp.Domain;
using Volo.Abp.Modularity;
2024-02-16 21:06:34 +08:00
using Yi.Framework.CodeGen.Domain.Shared;
2024-02-16 15:40:13 +08:00
using Yi.Framework.SqlSugarCore.Abstractions;
2024-02-16 21:06:34 +08:00
namespace Yi.Framework.CodeGen.Domain
2024-02-16 15:40:13 +08:00
{
2024-02-16 21:06:34 +08:00
[DependsOn(typeof(YiFrameworkCodeGenDomainSharedModule),
2024-02-16 15:40:13 +08:00
typeof(AbpDddDomainModule),
typeof(YiFrameworkSqlSugarCoreAbstractionsModule))]
2024-02-16 21:06:34 +08:00
public class YiFrameworkCodeGenDomainModule : AbpModule
2024-02-16 15:40:13 +08:00
{
}
}