11 lines
229 B
C#
11 lines
229 B
C#
using Volo.Abp.Modularity;
|
|
|
|
namespace KonSoft.TenantManagement;
|
|
|
|
[DependsOn(
|
|
typeof(TenantManagementDomainModule),
|
|
typeof(TenantManagementTestBaseModule)
|
|
)]
|
|
public class TenantManagementDomainTestModule : AbpModule
|
|
{
|
|
} |