mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
24 lines
475 B
C#
24 lines
475 B
C#
#pragma warning disable CS1591
|
|
|
|
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; }
|
|
}
|
|
}
|