Remove in-between properties

This commit is contained in:
Dean Herbert
2018-02-07 18:04:32 +09:00
parent 20c00720e5
commit 647cc4bdad
8 changed files with 40 additions and 56 deletions

View File

@ -26,18 +26,6 @@ namespace osu.Game.Users
[JsonProperty(@"age")]
public int? Age;
public int GlobalRank
{
get => Statistics?.Ranks.GlobalRank ?? 0;
set => Statistics.Ranks.GlobalRank = value;
}
public int CountryRank
{
get => Statistics?.Ranks.CountryRank ?? 0;
set => Statistics.Ranks.CountryRank = value;
}
//public Team Team;
[JsonProperty(@"profile_colour")]