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