Re-ordering of properties

This commit is contained in:
Michael Bisbjerg 2016-08-09 23:14:09 +02:00
parent ec40c2b4ae
commit 705b49d28b
3 changed files with 15 additions and 15 deletions

View File

@ -9,10 +9,10 @@ namespace TMDbLib.Objects.Changes
{
Action = ChangeAction.Updated;
}
[JsonProperty("original_value")]
public JToken OriginalValue { get; set; }
[JsonProperty("value")]
public JToken Value { get; set; }
}

View File

@ -11,36 +11,36 @@ namespace TMDbLib.Objects.Search
[JsonProperty("air_date")]
public DateTime? AirDate { get; set; }
[JsonProperty("crew")]
public List<Crew> Crew { get; set; }
[JsonProperty("episode_number")]
public int EpisodeNumber { get; set; }
[JsonProperty("guest_stars")]
public List<Cast> GuestStars { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("overview")]
public string Overview { get; set; }
[JsonProperty("production_code")]
public string ProductionCode { get; set; }
[JsonProperty("season_number")]
public int SeasonNumber { get; set; }
[JsonProperty("crew")]
public List<Crew> Crew { get; set; }
[JsonProperty("guest_stars")]
public List<Cast> GuestStars { get; set; }
[JsonProperty("show_id")]
public int ShowId { get; set; }
[JsonProperty("still_path")]
public string StillPath { get; set; }
[JsonProperty("overview")]
public string Overview { get; set; }
[JsonProperty("production_code")]
public string ProductionCode { get; set; }
[JsonProperty("vote_average")]
public double VoteAverage { get; set; }

View File

@ -16,7 +16,7 @@ namespace TMDbLib.Objects.TvShows
[JsonProperty("credits")]
public Credits Credits { get; set; }
[JsonProperty("episodes")]
public List<TvSeasonEpisode> Episodes { get; set; }