BotSharp/BotSharp.Platform.Models/AiResponse/AIResponse.cs
2018-10-01 21:49:01 -05:00

14 lines
248 B
C#

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