blob: 695ffdbf3ee12bb266029617978e417308e77041 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using DevHive.Data.Models;
using AutoMapper;
using DevHive.Services.Models.Post;
using DevHive.Services.Models.Post.Post;
namespace DevHive.Services.Configurations.Mapping
{
public class PostMappings : Profile
{
public PostMappings()
{
CreateMap<PostServiceModel, Post>();
CreateMap<Post, PostServiceModel>();
}
}
}
|