PlayerManagement/Application/Profiles/VsDuelParticipantProfile.cs
Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

16 lines
459 B
C#

using Application.DataTransferObjects.VsDuelParticipant;
using AutoMapper;
using Database.Entities;
namespace Application.Profiles;
public class VsDuelParticipantProfile : Profile
{
public VsDuelParticipantProfile()
{
CreateMap<VsDuelParticipant, VsDuelParticipantDto>()
.ForMember(des => des.PlayerName, opt => opt.MapFrom(src => src.Player.PlayerName));
CreateMap<VsDuelParticipantDto, VsDuelParticipant>();
}
}