16 lines
316 B
C#
16 lines
316 B
C#
using AutoMapper;
|
|
using CapMachine.Model;
|
|
using CapMachine.Wpf.Dtos;
|
|
using CapMachine.Wpf.Models;
|
|
|
|
namespace CapMachine.Wpf.MapperProfile
|
|
{
|
|
public class ActionLogProfile:Profile
|
|
{
|
|
public ActionLogProfile()
|
|
{
|
|
CreateMap<ActionLog, ActionLogDto>().ReverseMap();
|
|
}
|
|
}
|
|
}
|