15 lines
336 B
C#
15 lines
336 B
C#
using AutoMapper;
|
|
using CapMachine.Model.CANLIN;
|
|
using CapMachine.Wpf.Dtos;
|
|
|
|
namespace CapMachine.Wpf.MapperProfile
|
|
{
|
|
public class CANFdScheduleConfigProfile : Profile
|
|
{
|
|
public CANFdScheduleConfigProfile()
|
|
{
|
|
CreateMap<CANFdScheduleConfig, CANFdScheduleConfigDto>().ReverseMap();
|
|
}
|
|
}
|
|
}
|