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