BotSharp/BotSharp.Platform.Models/AiResponse/AIResponse.cs
2018-10-24 16:57:48 -05:00

18 lines
342 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.AiResponse
{
public class AiResponse
{
public String ResolvedQuery { get; set; }
public string Intent { get; set; }
public string Source { get; set; }
public double Score { get; set; }
}
}