shopping-assistant-api/ShoppingAssistantApi.Application/MappingProfiles/UserProfile.cs
2023-09-22 23:02:20 +03:00

13 lines
303 B
C#

using AutoMapper;
using ShoppingAssistantApi.Application.Models.Dtos;
using ShoppingAssistantApi.Domain.Entities;
namespace ShoppingAssistantApi.Application.MappingProfiles;
public class UserProfile : Profile
{
public UserProfile()
{
CreateMap<User, UserDto>().ReverseMap();
}
}