aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Video.cs
blob: ebd5c7aceebf060fc4457cb32685bece55c115fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma warning disable CS1591

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
    public class Video
    {
        public string Id { get; set; }

        public string Iso_639_1 { get; set; }

        public string Iso_3166_1 { get; set; }

        public string Key { get; set; }

        public string Name { get; set; }

        public string Site { get; set; }

        public string Size { get; set; }

        public string Type { get; set; }
    }
}