15 lines
309 B

2 years ago
using AutoMapper;
using SiNan.Model.Dto;
namespace SiNan.Model
{
public class MappingProfiles : Profile
{
public MappingProfiles()
{
CreateMap<ProductResponse, ProductGOIResponse>();
CreateMap<ProductSkuResponse, ProductSkuGOIResponse>();
}
}
}