BotSharp/BotSharp.Platform.Models/AiResponse/AIResponse.cs

18 lines
342 B
C#
Raw Normal View History

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
{
public String ResolvedQuery { get; set; }
2018-10-02 02:49:01 +00:00
public string Intent { get; set; }
public string Source { get; set; }
public double Score { get; set; }
2018-10-02 02:49:01 +00:00
}
}