2017-06-15 21:13:40 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Users
|
|
|
|
|
{
|
|
|
|
|
public class UserStatistics
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"level")]
|
|
|
|
|
public LevelInfo Level;
|
|
|
|
|
|
2017-06-25 10:51:54 +08:00
|
|
|
|
public struct LevelInfo
|
2017-06-15 21:13:40 +08:00
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"current")]
|
|
|
|
|
public int Current;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"progress")]
|
|
|
|
|
public int Progress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"pp")]
|
2017-06-15 23:25:13 +08:00
|
|
|
|
public decimal? PP;
|
2017-06-15 21:13:40 +08:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"pp_rank")]
|
|
|
|
|
public int Rank;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"ranked_score")]
|
|
|
|
|
public long RankedScore;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"hit_accuracy")]
|
|
|
|
|
public decimal Accuracy;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"play_count")]
|
|
|
|
|
public int PlayCount;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"total_score")]
|
|
|
|
|
public long TotalScore;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"total_hits")]
|
|
|
|
|
public int TotalHits;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"maximum_combo")]
|
|
|
|
|
public int MaxCombo;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"replays_watched_by_others")]
|
2017-09-13 14:20:49 +08:00
|
|
|
|
public int ReplaysWatched;
|
2017-06-15 21:13:40 +08:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"grade_counts")]
|
|
|
|
|
public Grades GradesCount;
|
|
|
|
|
|
2017-06-25 10:51:54 +08:00
|
|
|
|
public struct Grades
|
2017-06-15 21:13:40 +08:00
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"ss")]
|
|
|
|
|
public int SS;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"s")]
|
|
|
|
|
public int S;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"a")]
|
|
|
|
|
public int A;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|