PlayerManagement/Application/Profiles/SquadTypeProfile.cs
Tomasi - Developing bfbb030cb2 v. 0.11.0
2025-06-19 11:02:57 +02:00

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>();
}
}