mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
16 lines
438 B
C#
16 lines
438 B
C#
using AutoMapper;
|
|
using ShoppingAssistantApi.Application.Models.CreateDtos;
|
|
using ShoppingAssistantApi.Application.Models.Dtos;
|
|
using ShoppingAssistantApi.Domain.Entities;
|
|
|
|
namespace ShoppingAssistantApi.Application.MappingProfiles;
|
|
public class WishlistProfile : Profile
|
|
{
|
|
public WishlistProfile()
|
|
{
|
|
CreateMap<Wishlist, WishlistDto>().ReverseMap();
|
|
|
|
CreateMap<WishlistCreateDto, Wishlist>().ReverseMap();
|
|
}
|
|
}
|