aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs
blob: 1c673fdbd6cc3aea323e75d8d97909993795ad00 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma warning disable CS1591

using System.Collections.Generic;

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
    public class Videos
    {
        public IReadOnlyList<Video> Results { get; set; }
    }
}