PlayerManagement/Application/Profiles/VsDuelLeagueProfile.cs
2024-12-03 11:58:33 +01:00

13 lines
275 B
C#

using Application.DataTransferObjects.VsDuelLeague;
using AutoMapper;
using Database.Entities;
namespace Application.Profiles;
public class VsDuelLeagueProfile : Profile
{
public VsDuelLeagueProfile()
{
CreateMap<VsDuelLeague, VsDuelLeagueDto>();
}
}