From fadda8ef5663beea338f65ef9c69cd96ec1c5858 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 26 Apr 2014 23:42:05 -0400 Subject: add new notification features --- MediaBrowser.Api/Library/LibraryService.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'MediaBrowser.Api/Library/LibraryService.cs') 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; } + } + /// /// Class LibraryService /// -- cgit v1.2.3