15 lines
325 B
C#
15 lines
325 B
C#
using AutoMapper;
|
|
using CapMachine.Model.CANLIN;
|
|
using CapMachine.Wpf.Dtos;
|
|
|
|
namespace CapMachine.Wpf.MapperProfile
|
|
{
|
|
public class LINScheduleConfigProfile : Profile
|
|
{
|
|
public LINScheduleConfigProfile()
|
|
{
|
|
CreateMap<LINScheduleConfig, LINScheduleConfigDto>().ReverseMap();
|
|
}
|
|
}
|
|
}
|