15 lines
302 B
C#
15 lines
302 B
C#
using AutoMapper;
|
|
using CapMachine.Model;
|
|
using CapMachine.Wpf.Models;
|
|
|
|
namespace CapMachine.Wpf.MapperProfile
|
|
{
|
|
public class ChartYAxisProfile:Profile
|
|
{
|
|
public ChartYAxisProfile()
|
|
{
|
|
CreateMap<ChartYAxisDto,ConfigChartYAxis>().ReverseMap();
|
|
}
|
|
}
|
|
}
|