CalendarMapProfile.cs 314 B

1234567891011121314
  1. using AutoMapper;
  2. using VberZero.BaseSystem;
  3. namespace VberZero.AppService.Calendars.Dto;
  4. public class CalendarMapProfile : Profile
  5. {
  6. public CalendarMapProfile()
  7. {
  8. CreateMap<SysCalendar, CalendarDto>()
  9. .ForMember(x => x.NotifyType, opt => opt.MapFrom(a => a.NotifyTypes));
  10. }
  11. }