mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 23:12:55 +08:00
Merge branch 'master' into placement-display-in-timeline
This commit is contained in:
commit
5c3880d712
@ -203,6 +203,21 @@ namespace osu.Game.Users
|
|||||||
public int ID;
|
public int ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[JsonProperty("monthly_playcounts")]
|
||||||
|
public UserHistoryCount[] MonthlyPlaycounts;
|
||||||
|
|
||||||
|
[JsonProperty("replays_watched_counts")]
|
||||||
|
public UserHistoryCount[] ReplaysWatchedCounts;
|
||||||
|
|
||||||
|
public class UserHistoryCount
|
||||||
|
{
|
||||||
|
[JsonProperty("start_date")]
|
||||||
|
public DateTime Date;
|
||||||
|
|
||||||
|
[JsonProperty("count")]
|
||||||
|
public long Count;
|
||||||
|
}
|
||||||
|
|
||||||
public override string ToString() => Username;
|
public override string ToString() => Username;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user