20 lines
377 B
C#
20 lines
377 B
C#
using AutoMapper;
|
|
using DigitalData.UserManager.Domain.Entities;
|
|
using EnvelopeGenerator.Application.Users.Commands;
|
|
|
|
namespace EnvelopeGenerator.Application.Users;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class MappingProfile : Profile
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public MappingProfile()
|
|
{
|
|
CreateMap<CreateUserCommand, User>();
|
|
}
|
|
}
|