mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
more !wip
This commit is contained in:
parent
0ce93071f1
commit
cdec1f4f27
12 changed files with 573 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
|||
using AutoMapper;
|
||||
using Ombi.Api.TheMovieDb.Models;
|
||||
using Ombi.Core.Models.Search;
|
||||
using Ombi.Core.Models.Search.V2;
|
||||
using Ombi.TheMovieDbApi.Models;
|
||||
|
||||
namespace Ombi.Mapping.Profiles
|
||||
|
@ -72,6 +73,13 @@ namespace Ombi.Mapping.Profiles
|
|||
|
||||
CreateMap<MovieSearchResult, SearchMovieViewModel>().ReverseMap();
|
||||
CreateMap<MovieResponseDto, SearchMovieViewModel>().ReverseMap();
|
||||
|
||||
CreateMap<FullMovieInfo, SearchMovieViewModel>().ReverseMap();
|
||||
CreateMap<ProductionCompanies, Production_Companies>().ReverseMap();
|
||||
CreateMap<VideoResults, Videos>().ReverseMap();
|
||||
CreateMap<CreditsViewModel, Credits>().ReverseMap();
|
||||
CreateMap<MovieFullInfoViewModel, FullMovieInfo>()
|
||||
.ForMember(x => x.)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue