mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
18 lines
369 B
C#
18 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; }
|
|
}
|
|
}
|