2026-06-10 16:48:16 +10:00
|
|
|
|
using AutoMapper;
|
|
|
|
|
|
using PARR.Domain.DTOs.RobotSnapshotDTO;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.Core.Infrastructure.Mapping.RobotSnapshot
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RobotSnapshotMappingProfile : Profile
|
|
|
|
|
|
{
|
|
|
|
|
|
public RobotSnapshotMappingProfile()
|
|
|
|
|
|
{
|
2026-06-11 11:40:12 +10:00
|
|
|
|
CreateMap<PARR.Domain.Entities.RobotEntities.RobotSnapshot, RobotSnapshotDto>();
|
2026-06-10 16:48:16 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|