Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

17 lines
321 B
C#

using Application.DataTransferObjects.Note;
using AutoMapper;
using Database.Entities;
namespace Application.Profiles;
public class NoteProfile : Profile
{
public NoteProfile()
{
CreateMap<Note, NoteDto>();
CreateMap<UpdateNoteDto, Note>();
CreateMap<CreateNoteDto, Note>();
}
}