mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
15 lines
416 B
C#
15 lines
416 B
C#
using AutoMapper;
|
|
using ShoppingAssistantApi.Application.Models.CreateDtos;
|
|
using ShoppingAssistantApi.Application.Models.Dtos;
|
|
using ShoppingAssistantApi.Domain.Entities;
|
|
|
|
namespace ShoppingAssistantApi.Application.MappingProfiles;
|
|
public class RoleProfile : Profile
|
|
{
|
|
public RoleProfile()
|
|
{
|
|
CreateMap<Role, RoleDto>().ReverseMap();
|
|
|
|
CreateMap<RoleCreateDto, Role>().ReverseMap();
|
|
}
|
|
} |