blob: 19bfd62f613e5a7eda4a9477205928396bf549a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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; }
}
}
|