2020-06-19 11:24:13 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2020-05-30 23:23:09 -07:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
2019-08-18 04:20:52 -07:00
|
|
|
{
|
|
|
|
public class Video
|
|
|
|
{
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Id { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Iso_639_1 { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Iso_3166_1 { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Key { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Name { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Site { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Size { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
public string Type { get; set; }
|
2019-08-18 04:20:52 -07:00
|
|
|
}
|
|
|
|
}
|