sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/NotificationApplicationContractsModule.cs

18 lines
385 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
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
{
}