13 lines
229 B
C#
13 lines
229 B
C#
|
|
using AutoMapper;
|
|||
|
|
|
|||
|
|
namespace PARR_API.MappingProfiles
|
|||
|
|
{
|
|||
|
|
public class RequestToDomainProfile : Profile
|
|||
|
|
{
|
|||
|
|
public RequestToDomainProfile()
|
|||
|
|
{
|
|||
|
|
// снаружи в проект
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|