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

14 lines
248 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 Speech { get; set; }
public string Intent { get; set; }
}
}