19 lines
370 B
C#
19 lines
370 B
C#
using AutoMapper;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Application.Histories.Queries.Read;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ReadHistoryMappingProfile: Profile
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public ReadHistoryMappingProfile()
|
|
{
|
|
CreateMap<EnvelopeHistory, ReadHistoryResponse>();
|
|
}
|
|
}
|