mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
17 lines
321 B
C#
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>();
|
|
}
|
|
} |