erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Application.Contracts/NotificationApplicationContractsModule.cs

18 lines
377 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using Erp.Notifications.Domain;
2025-05-06 06:45:49 +00:00
using Volo.Abp.Application;
using Volo.Abp.Authorization;
using Volo.Abp.Modularity;
2025-11-11 19:49:52 +00:00
namespace Erp.Notifications.Application;
2025-05-06 06:45:49 +00:00
[DependsOn(
typeof(NotificationDomainSharedModule),
typeof(AbpDddApplicationContractsModule),
typeof(AbpAuthorizationModule)
)]
public class NotificationApplicationContractsModule : AbpModule
{
}
2025-11-11 19:49:52 +00:00