2018-10-02 02:49:01 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Platform.Models.AiResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AiResponse
|
|
|
|
|
|
{
|
2018-10-24 21:57:48 +00:00
|
|
|
|
public String ResolvedQuery { get; set; }
|
2018-10-02 02:49:01 +00:00
|
|
|
|
|
|
|
|
|
|
public string Intent { get; set; }
|
2018-10-24 21:57:48 +00:00
|
|
|
|
|
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public double Score { get; set; }
|
2018-10-02 02:49:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|