20 lines
441 B
C#
20 lines
441 B
C#
using AutoMapper;
|
|
using EnvelopeGenerator.Application.EnvelopeReceivers.Commands;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Application.Envelopes.Commands;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CreateEnvelopeMappingProfile : Profile
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public CreateEnvelopeMappingProfile()
|
|
{
|
|
CreateMap<Envelope, CreateEnvelopeReceiverResponse>();
|
|
}
|
|
}
|