25 lines
526 B
C#
25 lines
526 B
C#
using AutoMapper;
|
|
using EnvelopeGenerator.Application.EmailTemplates.Queries.Read;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EnvelopeGenerator.Application.EmailTemplates;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class MappingProfile : Profile
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public MappingProfile()
|
|
{
|
|
CreateMap<EmailTemplate, ReadEmailTemplateResponse>();
|
|
}
|
|
}
|