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

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