using AutoMapper; using Erp.Notifications.Entities; using Erp.Notifications.NotificationRules; namespace Erp.Notifications.Application; public class NotificationApplicationAutoMapperProfile : Profile { public NotificationApplicationAutoMapperProfile() { CreateMap(); CreateMap() .ForMember(d => d.CreatorFullname, o => o.Ignore()) .ForMember(d => d.TenantId, o => o.Ignore()); CreateMap(MemberList.Source); } }