using AutoMapper; using VberZero.BaseSystem; namespace VberZero.AppService.Calendars.Dto; public class CalendarMapProfile : Profile { public CalendarMapProfile() { CreateMap() .ForMember(x => x.NotifyType, opt => opt.MapFrom(a => a.NotifyTypes)); } }