diff options
Diffstat (limited to 'MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs')
| -rw-r--r-- | MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs b/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs new file mode 100644 index 000000000..241dcab4d --- /dev/null +++ b/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs @@ -0,0 +1,11 @@ +#pragma warning disable CS1591 + +using System.Collections.Generic; + +namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General +{ + public class Videos + { + public List<Video> Results { get; set; } + } +} |
