mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-31 23:42:09 +01:00
12 lines
331 B
C#
12 lines
331 B
C#
namespace MediaBrowser.Providers.Plugins.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; }
|
|
}
|
|
}
|