refactor(core,domain): Переименованы shared dto

This commit is contained in:
Mikhail Trubnikov
2026-07-24 13:35:56 +10:00
parent 90e9f80505
commit eacda75649
8 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
using AutoMapper;
using PARR.Domain.DTOs.Shared;
using PARR.Domain.Entities.RobotEntities;
namespace PARR.Core.Infrastructure.Mapping.Shared
{
public class RobotResultMappingProfile : Profile
{
public RobotResultMappingProfile()
{
CreateMap<Robot, RobotResult>();
}
}
}