You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
428 B
15 lines
428 B
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; }
|
|
}
|
|
}
|