NotificationMapProfile.cs 284 B

12345678910111213
  1. using Abp.Notifications;
  2. using AutoMapper;
  3. namespace VberZero.AppService.Notifications.Dto;
  4. public class NotificationMapProfile : Profile
  5. {
  6. public NotificationMapProfile()
  7. {
  8. CreateMap<NotificationDefinition, NotificationSubscriptionWithDisplayNameDto>();
  9. }
  10. }