-
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-556
- Loading branch information
Showing
165 changed files
with
2,886 additions
and
4,419 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
21 changes: 21 additions & 0 deletions
21
Source/Lib/Trakt.NET/Objects/Post/Syncs/Favorites/ITraktSyncFavoritesPost.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,21 @@ | ||
namespace TraktNet.Objects.Post.Syncs.Favorites | ||
{ | ||
using Requests.Interfaces; | ||
using System.Collections.Generic; | ||
|
||
/// <summary>A Trakt favorites post, containing all movies and shows, which should be favorited by an user.</summary> | ||
public interface ITraktSyncFavoritesPost : IRequestBody | ||
{ | ||
/// <summary> | ||
/// An optional list of <see cref="ITraktSyncFavoritesPostMovie" />s. | ||
/// <para>Each <see cref="ITraktSyncFavoritesPostMovie" /> must have at least a valid Trakt id.</para> | ||
/// </summary> | ||
IList<ITraktSyncFavoritesPostMovie> Movies { get; set; } | ||
|
||
/// <summary> | ||
/// An optional list of <see cref="ITraktSyncFavoritesPostShow" />s. | ||
/// <para>Each <see cref="ITraktSyncFavoritesPostShow" /> must have at least a valid Trakt id.</para> | ||
/// </summary> | ||
IList<ITraktSyncFavoritesPostShow> Shows { get; set; } | ||
} | ||
} |
Oops, something went wrong.