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