18 lines
385 B
C#
18 lines
385 B
C#
|
|
using Sozsoft.Notifications.Domain;
|
|||
|
|
using Volo.Abp.Application;
|
|||
|
|
using Volo.Abp.Authorization;
|
|||
|
|
using Volo.Abp.Modularity;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Notifications.Application;
|
|||
|
|
|
|||
|
|
[DependsOn(
|
|||
|
|
typeof(NotificationDomainSharedModule),
|
|||
|
|
typeof(AbpDddApplicationContractsModule),
|
|||
|
|
typeof(AbpAuthorizationModule)
|
|||
|
|
)]
|
|||
|
|
public class NotificationApplicationContractsModule : AbpModule
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|