Files
TenWholeYears.Server/RecNet.Application/Common/Mapping/ApplicationMappingProfile.cs
2026-06-18 13:15:27 -05:00

12 lines
273 B
C#

using AutoMapper;
using RecNet.Application.Profiles;
namespace RecNet.Application.Common.Mapping;
public class ApplicationMappingProfile : Profile
{
public ApplicationMappingProfile()
{
CreateMap<Domain.Entities.Profiles.Profile, ProfileDTO>();
}
}