sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain/NotificationDomainModule.cs

17 lines
303 B
C#
Raw Normal View History

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