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.
12 lines
331 B
12 lines
331 B
5 years ago
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
||
6 years ago
|
{
|
||
|
public class ExternalIds
|
||
|
{
|
||
6 years ago
|
public string Imdb_Id { get; set; }
|
||
|
public object Freebase_Id { get; set; }
|
||
|
public string Freebase_Mid { get; set; }
|
||
|
public int Tvdb_Id { get; set; }
|
||
|
public int Tvrage_Id { get; set; }
|
||
6 years ago
|
}
|
||
|
}
|