Files
CapMachine/CapMachine.Wpf/MapperProfile/HistoryAlarmProfile.cs
2025-01-01 17:41:48 +08:00

21 lines
447 B
C#

using AutoMapper;
using CapMachine.Model;
using CapMachine.Model.Alarm;
using CapMachine.Wpf.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.MapperProfile
{
public class HistoryAlarmProfile : Profile
{
public HistoryAlarmProfile()
{
CreateMap<HistoryAlarm, HistoryAlarmDto>().ReverseMap();
}
}
}