BotSharp/BotSharp.Platform.OwnThink/Models/AIResponseFulfillment.cs
2019-03-16 23:50:33 -05:00

14 lines
265 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.OwnThink.Models
{
public class AIResponseFulfillment
{
public string Speech { get; set; }
public List<Object> Messages { get; set; }
}
}