BotSharp/BotSharp.Core/Models/AIResponseFulfillment.cs

14 lines
252 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.Models
{
public class AIResponseFulfillment
{
public string Speech { get; set; }
2018-03-28 22:08:49 +00:00
public List<Object> Messages { get; set; }
}
}