29 lines
683 B
C#
29 lines
683 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace TMDbLib.Objects.Search
|
|
{
|
|
public class SearchTvSeason
|
|
{
|
|
[JsonProperty("air_date")]
|
|
public DateTime? AirDate { get; set; }
|
|
|
|
[JsonProperty("episode_count")]
|
|
public int EpisodeCount { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("overview")]
|
|
public string Overview { get; set; }
|
|
|
|
[JsonProperty("poster_path")]
|
|
public string PosterPath { get; set; }
|
|
|
|
[JsonProperty("season_number")]
|
|
public int SeasonNumber { get; set; }
|
|
}
|
|
} |