Files
EnvelopeGenerator/EnvelopeGenerator.Application/EnvelopeReceivers/MappingProfile.cs
2025-09-09 18:18:47 +02:00

21 lines
442 B
C#

using AutoMapper;
using EnvelopeGenerator.Application.Common.Dto.Receiver;
using EnvelopeGenerator.Application.Envelopes.Commands;
using EnvelopeGenerator.Domain.Entities;
namespace EnvelopeGenerator.Application.EnvelopeReceivers;
/// <summary>
///
/// </summary>
public class MappingProfile : Profile
{
/// <summary>
///
/// </summary>
public MappingProfile()
{
CreateMap<Receiver, ReceiverDto>();
}
}