diff --git a/TMDbLib/Objects/Search/TvSeasonEpisode.cs b/TMDbLib/Objects/Search/TvSeasonEpisode.cs index 2e354e96..49a986c8 100644 --- a/TMDbLib/Objects/Search/TvSeasonEpisode.cs +++ b/TMDbLib/Objects/Search/TvSeasonEpisode.cs @@ -17,6 +17,9 @@ public class TvSeasonEpisode [JsonProperty("episode_number")] public int EpisodeNumber { get; set; } + [JsonProperty("episode_type")] + public string EpisodeType { get; set; } + [JsonProperty("guest_stars")] public List GuestStars { get; set; } @@ -37,7 +40,7 @@ public class TvSeasonEpisode [JsonProperty("season_number")] public int SeasonNumber { get; set; } - + [JsonProperty("still_path")] public string StillPath { get; set; }