mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-14 03:32:57 +02:00
14 lines
428 B
C#
14 lines
428 B
C#
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; }
|
|
}
|
|
}
|