Files
parr_api/PARR.Core/Infrastructure/Mapping/Shared/RobotResultMappingProfile.cs

15 lines
322 B
C#
Raw Permalink Normal View History

using AutoMapper;
using PARR.Domain.DTOs.Shared;
using PARR.Domain.Entities.RobotEntities;
namespace PARR.Core.Infrastructure.Mapping.Shared
{
public class RobotResultMappingProfile : Profile
{
public RobotResultMappingProfile()
{
CreateMap<Robot, RobotResult>();
}
}
}