You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Video.cs

24 lines
475 B

#pragma warning disable CS1591
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Video
{
5 years ago
public string Id { get; set; }
5 years ago
public string Iso_639_1 { get; set; }
5 years ago
public string Iso_3166_1 { get; set; }
5 years ago
public string Key { get; set; }
5 years ago
public string Name { get; set; }
5 years ago
public string Site { get; set; }
5 years ago
public string Size { get; set; }
5 years ago
public string Type { get; set; }
}
}