1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00

Merge dependency

This commit is contained in:
Andrei Zavatski 2020-02-07 23:14:46 +03:00
parent 51ae741fc7
commit fa53bd96a0

View File

@ -203,6 +203,21 @@ namespace osu.Game.Users
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;
/// <summary>