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

17 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
{
}