14 lines
341 B
C#
14 lines
341 B
C#
using AutoMapper;
|
|
using PARR.Domain.DTOs.Shared;
|
|
|
|
namespace PARR.Core.Infrastructure.Mapping.Shared
|
|
{
|
|
public class RobotTaskStatusDtoMappingProfile : Profile
|
|
{
|
|
public RobotTaskStatusDtoMappingProfile()
|
|
{
|
|
CreateMap<PARR.Domain.Entities.RobotEntities.TaskStatus, RobotTaskStatusDto>();
|
|
}
|
|
}
|
|
}
|