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