Files
nadekobot/NadekoBot.Core/Modules/Searches/Common/UrbanDef.cs
2021-09-06 21:29:22 +02:00

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; }
}
}