using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class AccountState { /// /// Represents the current favorite status of the related movie for the current user session. /// [JsonProperty("favorite")] public bool Favorite { get; set; } /// /// The TMDb id for the related movie /// [JsonProperty("id")] public int Id { get; set; } [JsonProperty("rating")] public double? Rating { get; set; } /// /// Represents the presence of the related movie on the current user's watchlist. /// [JsonProperty("watchlist")] public bool Watchlist { get; set; } } }