Files
CapMachine/CapMachine.Wpf/MapperProfile/CANConfigExdProfile.cs
2024-12-18 15:50:21 +08:00

21 lines
446 B
C#

using AutoMapper;
using CapMachine.Model;
using CapMachine.Model.CANLIN;
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 CANConfigExdProfile:Profile
{
public CANConfigExdProfile()
{
CreateMap<CANConfigExd, CANConfigExdDto>().ReverseMap();
}
}
}