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

15 lines
313 B
C#

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