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