aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs
blob: 26e839de74e642d7eb82626f8a5fb0f82242b4c5 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

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