Skip to content

Commit

Permalink
Merge pull request #465 from danimart1991/feature/tvseasonepisode_run…
Browse files Browse the repository at this point in the history
…time

Add Runtime property to TV Season Episode
  • Loading branch information
Shadowghost authored Nov 13, 2023
2 parents 3f6c219 + 5e49bf2 commit d16d34b
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 @@ -32,6 +32,9 @@ public class TvSeasonEpisode
[JsonProperty("production_code")]
public string ProductionCode { get; set; }

[JsonProperty("runtime")]
public int? Runtime { get; set; }

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

Expand All @@ -44,4 +47,4 @@ public class TvSeasonEpisode
[JsonProperty("vote_count")]
public int VoteCount { get; set; }
}
}
}

0 comments on commit d16d34b

Please sign in to comment.