diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-26 23:42:05 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-26 23:42:05 -0400 |
| commit | fadda8ef5663beea338f65ef9c69cd96ec1c5858 (patch) | |
| tree | 911b8d1d86af4452ab93487a2243f0d3197fc7a3 /MediaBrowser.Api/Library/LibraryService.cs | |
| parent | bdffaf22c99a114d33a7485f9a9c5766e0fbbcaa (diff) | |
add new notification features
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
| -rw-r--r-- | MediaBrowser.Api/Library/LibraryService.cs | 8 |
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> |
