Added missing EpisodeType property to TvEpisodeBase (#516)
Some checks failed
Generic Build / build (push) Has been cancelled

Co-authored-by: chrispr <chris@chrispr.org>
This commit is contained in:
Duck, Scrooge Duck 2024-10-29 09:57:24 -04:00 committed by GitHub
parent fafb1c5204
commit e511e49082
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,5 +31,9 @@ namespace TMDbLib.Objects.TvShows
[JsonProperty("runtime")] [JsonProperty("runtime")]
public int? Runtime { get; set; } public int? Runtime { get; set; }
[JsonProperty("episode_type")]
public string EpisodeType { get; set; }
} }
} }