15 lines
328 B
C#
15 lines
328 B
C#
using AutoMapper;
|
|
using CapMachine.Model.CANLIN;
|
|
using CapMachine.Wpf.Dtos;
|
|
|
|
namespace CapMachine.Wpf.MapperProfile
|
|
{
|
|
public class CANScheduleConfigProfile : Profile
|
|
{
|
|
public CANScheduleConfigProfile()
|
|
{
|
|
CreateMap<CANScheduleConfig, CANScheduleConfigDto>().ReverseMap();
|
|
}
|
|
}
|
|
}
|