network-resurrector/NetworkResurrector.Agent.Ap.../Mappings/MappingProfile.cs

15 lines
341 B
C#
Raw Normal View History

2020-12-23 01:27:39 +02:00
using AutoMapper;
using NetworkResurrector.Agent.Application.Queries;
using NetworkResurrector.Agent.Domain.Entities;
namespace NetworkResurrector.Agent.Application.Mappings
{
public class MappingProfile : Profile
{
public MappingProfile()
{
CreateMap<Machine, GetMachines.Model>();
}
}
}