mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
13 lines
235 B
C#
13 lines
235 B
C#
using Application.DataTransferObjects.Rank;
|
|
using AutoMapper;
|
|
using Database.Entities;
|
|
|
|
namespace Application.Profiles;
|
|
|
|
public class RankProfile : Profile
|
|
{
|
|
public RankProfile()
|
|
{
|
|
CreateMap<Rank, RankDto>();
|
|
}
|
|
} |