mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
21 lines
469 B
C#
21 lines
469 B
C#
namespace NadekoBot.Modules.Games.Common.ChatterBot
|
|
{
|
|
public class CleverbotResponse
|
|
{
|
|
public string Cs { get; set; }
|
|
public string Output { get; set; }
|
|
}
|
|
|
|
public class CleverbotIOCreateResponse
|
|
{
|
|
public string Status { get; set; }
|
|
public string Nick { get; set; }
|
|
}
|
|
|
|
public class CleverbotIOAskResponse
|
|
{
|
|
public string Status { get; set; }
|
|
public string Response { get; set; }
|
|
}
|
|
}
|