- using Abp.Notifications;
- using AutoMapper;
- namespace VberZero.AppService.Notifications.Dto;
- public class NotificationMapProfile : Profile
- {
- public NotificationMapProfile()
- {
- CreateMap<NotificationDefinition, NotificationSubscriptionWithDisplayNameDto>();
- }
- }
|