erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Domain/NotificationDomainModule.cs

17 lines
299 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using Volo.Abp.Domain;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
2025-11-11 19:49:52 +00:00
namespace Erp.Notifications.Domain;
2025-05-06 06:45:49 +00:00
[DependsOn(
typeof(AbpDddDomainModule),
typeof(AbpIdentityDomainModule),
typeof(NotificationDomainSharedModule)
)]
public class NotificationDomainModule : AbpModule
{
}
2025-11-11 19:49:52 +00:00