mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
14 lines
316 B
C#
14 lines
316 B
C#
namespace NadekoBot.Core.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; }
|
|
}
|
|
}
|