-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Resolves GH-522
- Loading branch information
Showing
23 changed files
with
643 additions
and
643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../Get/Movies/ITraktMostRecommendedMovie.cs → ...ts/Get/Movies/ITraktMostFavoritedMovie.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
Source/Lib/Trakt.NET/Objects/Get/Movies/Json/Factories/MostFavoritedMovieJsonIOFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace TraktNet.Objects.Get.Movies.Json.Factories | ||
{ | ||
using Get.Movies.Json.Reader; | ||
using Get.Movies.Json.Writer; | ||
using Objects.Json; | ||
|
||
internal class MostFavoritedMovieJsonIOFactory : IJsonIOFactory<ITraktMostFavoritedMovie> | ||
{ | ||
public IObjectJsonReader<ITraktMostFavoritedMovie> CreateObjectReader() => new MostFavoritedMovieObjectJsonReader(); | ||
|
||
public IObjectJsonWriter<ITraktMostFavoritedMovie> CreateObjectWriter() => new MostFavoritedMovieObjectJsonWriter(); | ||
} | ||
} |
13 changes: 0 additions & 13 deletions
13
Source/Lib/Trakt.NET/Objects/Get/Movies/Json/Factories/MostRecommendedMovieJsonIOFactory.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
Source/Lib/Trakt.NET/Requests/Movies/MoviesMostFavoritedRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace TraktNet.Requests.Movies | ||
{ | ||
using Base; | ||
using Objects.Get.Movies; | ||
|
||
internal sealed class MoviesMostFavoritedRequest : AMostFavoritedRequest<ITraktMostFavoritedMovie> | ||
{ | ||
public override string UriTemplate => "movies/favorited{/period}{?extended,page,limit,query,years,genres,languages,countries,runtimes,ratings,certifications}"; | ||
|
||
public override void Validate() { } | ||
} | ||
} |
12 changes: 0 additions & 12 deletions
12
Source/Lib/Trakt.NET/Requests/Movies/MoviesMostRecommendedRequest.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.