Merge pull request #473 from danimart1991/feature/tvseasonepisode_type

Add Episode Type property to TV Season Episode
This commit is contained in:
Tim Eisele 2023-12-07 14:47:17 +01:00 committed by GitHub
commit 00cc2db310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,9 @@ namespace TMDbLib.Objects.Search
[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; }
@ -37,7 +40,7 @@ namespace TMDbLib.Objects.Search
[JsonProperty("season_number")]
public int SeasonNumber { get; set; }
[JsonProperty("still_path")]
public string StillPath { get; set; }