22 lines
535 B
C#
22 lines
535 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TMDbLib.Objects.General
|
|
{
|
|
public class ExternalIdsTvShow : ExternalIds
|
|
{
|
|
[JsonProperty("imdb_id")]
|
|
public string ImdbId { get; set; }
|
|
|
|
[JsonProperty("tvdb_id")]
|
|
public string TvdbId { 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; }
|
|
}
|
|
} |