jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/ExternalIdsMovie.cs

20 lines
460 B
C#

using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class ExternalIdsMovie : ExternalIds
{
[JsonProperty("imdb_id")]
public string ImdbId { get; set; }
[JsonProperty("facebook_id")]
public string FacebookId { get; set; }
[JsonProperty("twitter_id")]
public string TwitterId { get; set; }
[JsonProperty("instagram_id")]
public string InstagramId { get; set; }
}
}