Files
parr_api/PARR.Core/Infrastructure/Mapping/RobotSnapshot/RobotSnapshotMappingProfile.cs

14 lines
349 B
C#

using AutoMapper;
using PARR.Domain.DTOs.RobotSnapshotDTO;
namespace PARR.Core.Infrastructure.Mapping.RobotSnapshot
{
public class RobotSnapshotMappingProfile : Profile
{
public RobotSnapshotMappingProfile()
{
CreateMap<PARR.Domain.Entities.RobotEntities.RobotSnapshot, RobotSnapshotDto>();
}
}
}