aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Library/LibraryService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
-rw-r--r--MediaBrowser.Api/Library/LibraryService.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Library/LibraryService.cs b/MediaBrowser.Api/Library/LibraryService.cs
index 290073652..2b5b27804 100644
--- a/MediaBrowser.Api/Library/LibraryService.cs
+++ b/MediaBrowser.Api/Library/LibraryService.cs
@@ -231,6 +231,14 @@ namespace MediaBrowser.Api.Library
}
+ [Route("/Library/Series/Updated", "POST")]
+ [Api(Description = "Reports that new episodes of a series have been added by an external source")]
+ public class PostUpdatedSeries : IReturnVoid
+ {
+ [ApiMember(Name = "TvdbId", Description = "Tvdb Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
+ public string TvdbId { get; set; }
+ }
+
/// <summary>
/// Class LibraryService
/// </summary>