12 lines
No EOL
238 B
C#
12 lines
No EOL
238 B
C#
using AutoMapper;
|
|
|
|
namespace Retroactiune.Models
|
|
{
|
|
public class MappingProfile : Profile
|
|
{
|
|
public MappingProfile()
|
|
{
|
|
CreateMap<FeedbackReceiver, FeedbackReceiverDto>().ReverseMap();
|
|
}
|
|
}
|
|
} |