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,14 @@
#nullable disable
namespace NadekoBot.Modules.Searches.Common;
public class UrbanResponse
{
public UrbanDef[] List { get; set; }
}
public class UrbanDef
{
public string Word { get; set; }
public string Definition { get; set; }
public string Permalink { get; set; }
}