Skip to content

Commit

Permalink
Fix PR Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danimart1991 authored Nov 13, 2023
1 parent 34760b8 commit 5e49bf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TMDbLib/Objects/Search/TvSeasonEpisode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class TvSeasonEpisode
public string ProductionCode { get; set; }

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

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

0 comments on commit 5e49bf2

Please sign in to comment.