mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 18:28:27 -04:00
dev: further cleanup of osu commands
This commit is contained in:
@@ -3,7 +3,7 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace NadekoBot.Modules.Searches.Common;
|
||||
|
||||
public class UserData
|
||||
public class GatariUserData
|
||||
{
|
||||
[JsonProperty("abbr")]
|
||||
public object Abbr { get; set; }
|
||||
@@ -48,5 +48,5 @@ public class GatariUserResponse
|
||||
public int Code { get; set; }
|
||||
|
||||
[JsonProperty("users")]
|
||||
public List<UserData> Users { get; set; }
|
||||
public List<GatariUserData> Users { get; set; }
|
||||
}
|
@@ -3,7 +3,7 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace NadekoBot.Modules.Searches.Common;
|
||||
|
||||
public class UserStats
|
||||
public class GatariUserStats
|
||||
{
|
||||
[JsonProperty("a_count")]
|
||||
public int ACount { get; set; }
|
||||
@@ -72,5 +72,5 @@ public class GatariUserStatsResponse
|
||||
public int Code { get; set; }
|
||||
|
||||
[JsonProperty("stats")]
|
||||
public UserStats Stats { get; set; }
|
||||
public GatariUserStats Stats { get; set; }
|
||||
}
|
Reference in New Issue
Block a user