refactor: remove CreateEnvelopeReceiverResponse

This commit is contained in:
2025-08-21 17:07:22 +02:00
parent 196941f73f
commit c7b3d97b2e
5 changed files with 11 additions and 84 deletions

View File

@@ -1,12 +1,12 @@
using EnvelopeGenerator.Application.Dto.Receiver;
using EnvelopeGenerator.Application.Envelopes.Commands;
using EnvelopeGenerator.Application.Dto;
using EnvelopeGenerator.Application.Dto.Receiver;
namespace EnvelopeGenerator.Application.EnvelopeReceivers.Commands;
/// <summary>
///
/// </summary>
public record CreateEnvelopeReceiverResponse : CreateEnvelopeResponse
public record CreateEnvelopeReceiverResponse : EnvelopeDto
{
/// <summary>
///

View File

@@ -15,7 +15,6 @@ public class MappingProfile : Profile
/// </summary>
public MappingProfile()
{
CreateMap<Envelope, CreateEnvelopeResponse>();
CreateMap<Receiver, ReceiverReadDto>();
}
}