mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
Restructured folders and project names, ci should be fixed
This commit is contained in:
49
src/NadekoBot/Modules/Searches/Common/OsuUserData.cs
Normal file
49
src/NadekoBot/Modules/Searches/Common/OsuUserData.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user