15 lines
297 B
C#
15 lines
297 B
C#
using AutoMapper;
|
|
using CapMachine.Model;
|
|
using CapMachine.Wpf.Dtos;
|
|
|
|
namespace CapMachine.Wpf.MapperProfile
|
|
{
|
|
public class ConfigAlarmProfile : Profile
|
|
{
|
|
public ConfigAlarmProfile()
|
|
{
|
|
CreateMap<ConfigAlarm, ConfigAlarmDto>().ReverseMap();
|
|
}
|
|
}
|
|
}
|