erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Domain/NotificationDomainModule.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

15 lines
299 B
C#

using Volo.Abp.Domain;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
namespace Kurs.Notifications.Domain;
[DependsOn(
typeof(AbpDddDomainModule),
typeof(AbpIdentityDomainModule),
typeof(NotificationDomainSharedModule)
)]
public class NotificationDomainModule : AbpModule
{
}