Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Video.cs

24 lines
475 B
C#
Raw Normal View History

#pragma warning disable CS1591
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Video
{
2019-08-18 14:44:13 +02:00
public string Id { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Iso_639_1 { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Iso_3166_1 { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Key { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Name { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Site { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Size { get; set; }
2020-06-16 09:43:52 +12:00
2019-08-18 14:44:13 +02:00
public string Type { get; set; }
}
}