Renamings for consistency

This commit is contained in:
Kwoth
2023-07-16 16:37:58 +00:00
parent 22e8b62df2
commit 2d3399b7e6
148 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
#nullable disable
using Newtonsoft.Json;
namespace NadekoBot.Modules.Searches;
public class SteamGameId
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("appid")]
public int AppId { get; set; }
}
public class SteamGameData
{
public string ShortDescription { get; set; }
public class Container
{
[JsonProperty("success")]
public bool Success { get; set; }
[JsonProperty("data")]
public SteamGameData Data { get; set; }
}
}
public enum TimeErrors
{
InvalidInput,
ApiKeyMissing,
NotFound,
Unknown
}