Merge pull request #19226 from peppy/use-correct-casing-api-scores-collection

Use more correct json casing in `APIScoresCollection`
This commit is contained in:
Dan Balasescu 2022-07-19 16:12:51 +09:00 committed by GitHub
commit c242b2377e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"scores")]
public List<SoloScoreInfo> Scores;
[JsonProperty(@"userScore")]
[JsonProperty(@"user_score")]
public APIScoreWithPosition UserScore;
}
}