27 lines
635 B
C#
27 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using TMDbLib.Objects.General;
|
|
|
|
namespace TMDbLib.Objects.Search
|
|
{
|
|
public class KnownForTv : KnownForBase
|
|
{
|
|
public KnownForTv()
|
|
{
|
|
MediaType = MediaType.Tv;
|
|
}
|
|
|
|
[JsonProperty("first_air_date")]
|
|
public DateTime? FirstAirDate { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("original_name")]
|
|
public string OriginalName { get; set; }
|
|
|
|
[JsonProperty("origin_country")]
|
|
public List<string> OriginCountry { get; set; }
|
|
}
|
|
} |