mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
using Newtonsoft.Json;
|
|
|
|
namespace NadekoBot.Core.Modules.Searches.Common
|
|
{
|
|
public class OsuUserData
|
|
{
|
|
[JsonProperty("user_id")] public string UserId { get; set; }
|
|
|
|
[JsonProperty("username")] public string Username { get; set; }
|
|
|
|
[JsonProperty("join_date")] public string JoinDate { get; set; }
|
|
|
|
[JsonProperty("count300")] public string Count300 { get; set; }
|
|
|
|
[JsonProperty("count100")] public string Count100 { get; set; }
|
|
|
|
[JsonProperty("count50")] public string Count50 { get; set; }
|
|
|
|
[JsonProperty("playcount")] public string Playcount { get; set; }
|
|
|
|
[JsonProperty("ranked_score")] public string RankedScore { get; set; }
|
|
|
|
[JsonProperty("total_score")] public string TotalScore { get; set; }
|
|
|
|
[JsonProperty("pp_rank")] public string PpRank { get; set; }
|
|
|
|
[JsonProperty("level")] public double Level { get; set; }
|
|
|
|
[JsonProperty("pp_raw")] public double PpRaw { get; set; }
|
|
|
|
[JsonProperty("accuracy")] public double Accuracy { get; set; }
|
|
|
|
[JsonProperty("count_rank_ss")] public string CountRankSs { get; set; }
|
|
|
|
[JsonProperty("count_rank_ssh")] public string CountRankSsh { get; set; }
|
|
|
|
[JsonProperty("count_rank_s")] public string CountRankS { get; set; }
|
|
|
|
[JsonProperty("count_rank_sh")] public string CountRankSh { get; set; }
|
|
|
|
[JsonProperty("count_rank_a")] public string CountRankA { get; set; }
|
|
|
|
[JsonProperty("country")] public string Country { get; set; }
|
|
|
|
[JsonProperty("total_seconds_played")] public string TotalSecondsPlayed { get; set; }
|
|
|
|
[JsonProperty("pp_country_rank")] public string PpCountryRank { get; set; }
|
|
}
|
|
} |