You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
445 B
C#
16 lines
445 B
C#
using NPin.Domain.Shared;
|
|
using NPin.Framework.Ddd.Application.Contracts;
|
|
using NPin.Framework.TenantManagement.Application.Contracts;
|
|
|
|
namespace NPin.Application.Contracts;
|
|
|
|
[DependsOn(
|
|
typeof(NPinDomainSharedModule),
|
|
// TODO RBAC
|
|
// TODO Bbs
|
|
typeof(NPinFrameworkTenantManagementApplicationContractsModule),
|
|
typeof(NPinFrameworkDddApplicationContractsModule)
|
|
)]
|
|
public class NPinApplicationContractsModule : AbpModule
|
|
{
|
|
} |