aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Http/HttpAutoMapperProfile.cs
blob: 426379b8fc2ddb632521c0c3b178089812276a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using AutoMapper;
using Timeline.Services;

namespace Timeline.Models.Http
{

    public class HttpAutoMapperProfile : Profile
    {
        public HttpAutoMapperProfile()
        {
            CreateMap<HttpUserPatchRequest, ModifyUserParams>();
            CreateMap<HttpTimelinePatchRequest, TimelineChangePropertyParams>();
        }
    }
}