Files
nadekobot/src/NadekoBot/Modules/Games/Common/ChatterBot/CleverbotResponse.cs
2021-12-19 05:14:11 +01:00

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