15 lines
341 B
C#
15 lines
341 B
C#
|
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>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|