Files
parr_api/PARR.Core/Infrastructure/Mapping/Shared/RobotStatusResultMappingProfile.cs
2026-07-24 13:35:56 +10:00

15 lines
346 B
C#

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