Skip to content

Commit

Permalink
Merge pull request #473 from danimart1991/feature/tvseasonepisode_type
Browse files Browse the repository at this point in the history
Add Episode Type property to TV Season Episode
  • Loading branch information
Shadowghost authored Dec 7, 2023
2 parents c30b9e5 + f264011 commit 00cc2db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion TMDbLib/Objects/Search/TvSeasonEpisode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Cast> GuestStars { get; set; }

Expand All @@ -37,7 +40,7 @@ public class TvSeasonEpisode

[JsonProperty("season_number")]
public int SeasonNumber { get; set; }

[JsonProperty("still_path")]
public string StillPath { get; set; }

Expand Down

0 comments on commit 00cc2db

Please sign in to comment.