mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
13 lines
260 B
C#
13 lines
260 B
C#
using Application.DataTransferObjects.SquadType;
|
|
using AutoMapper;
|
|
using Database.Entities;
|
|
|
|
namespace Application.Profiles;
|
|
|
|
public class SquadTypeProfile : Profile
|
|
{
|
|
public SquadTypeProfile()
|
|
{
|
|
CreateMap<SquadType, SquadTypeDto>();
|
|
}
|
|
} |