using AutoMapper; using CapMachine.Model; using CapMachine.Wpf.Dtos; using CapMachine.Wpf.Models; namespace CapMachine.Wpf.MapperProfile { public class ActionLogProfile:Profile { public ActionLogProfile() { CreateMap().ReverseMap(); } } }