mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
14 lines
284 B
C#
14 lines
284 B
C#
#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; }
|
|
} |