13 lines
No EOL
226 B
C#
13 lines
No EOL
226 B
C#
using AutoMapper;
|
|
using BuecherwurmAPI.Models;
|
|
|
|
namespace BuecherwurmAPI.Profiles
|
|
{
|
|
public class LendProfile : Profile
|
|
{
|
|
public LendProfile()
|
|
{
|
|
CreateMap<Lend, LendPost>();
|
|
}
|
|
}
|
|
} |