mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
19 lines
406 B
C#
19 lines
406 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; }
|
|
} |