Ignore some properties

This commit is contained in:
Dan Balasescu
2021-11-15 16:32:25 +09:00
parent 0cfd6fdf04
commit 45382a8127
2 changed files with 6 additions and 6 deletions

View File

@ -17,10 +17,10 @@ namespace osu.Game.Rulesets.Difficulty
[JsonIgnore]
public Skill[] Skills { get; set; }
[JsonProperty("star_rating")]
[JsonProperty("star_rating", Order = -3)]
public double StarRating { get; set; }
[JsonProperty("max_combo")]
[JsonProperty("max_combo", Order = -2)]
public int MaxCombo { get; set; }
public DifficultyAttributes()