feat(ReadDocumentMappingProfile): Added mapping profile of ReadDocumentResponse

This commit is contained in:
Developer 02
2025-04-23 00:01:57 +02:00
parent 8785505a91
commit 97dcc0f0a1
3 changed files with 41 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
using AutoMapper;
using EnvelopeGenerator.Domain.Entities;
namespace EnvelopeGenerator.Application.Documents.Queries.Read;
/// <summary>
///
/// </summary>
public class ReadDocumentMappingProfile : Profile
{
/// <summary>
///
/// </summary>
public ReadDocumentMappingProfile()
{
CreateMap<EnvelopeDocument, ReadDocumentResponse>();
}
}