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