mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
23 lines
475 B
C#
23 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; }
|
|
}
|
|
}
|