sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain/NotificationDomainModule.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

16 lines
303 B
C#

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