mirror of
https://github.com/jellyfin/TMDbLib.git
synced 2024-11-23 05:40:12 +00:00
Add bool Adult to TvShow
The property can be used to determine if a show is an adult orientated show (so a pornographic show). I re-used the same field name as what is used for movies.
This commit is contained in:
parent
2fa2e9df68
commit
51e53319f0
@ -12,6 +12,9 @@ namespace TMDbLib.Objects.TvShows
|
||||
{
|
||||
public class TvShow
|
||||
{
|
||||
[JsonProperty("adult")]
|
||||
public bool Adult { get; set; }
|
||||
|
||||
[JsonProperty("account_states")]
|
||||
public AccountState AccountStates { get; set; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user