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.
|
namespace MediaBrowser.Providers.Tmdb.Models.General
|
|
{
|
|
public class ExternalIds
|
|
{
|
|
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; }
|
|
}
|
|
}
|