mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:56:10 +01:00
17 lines
369 B
C#
17 lines
369 B
C#
#pragma warning disable CS1591
|
|
|
|
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; }
|
|
}
|
|
}
|