BotSharp/BotSharp.Platform.OwnThink/Models/AIResponseFulfillment.cs

14 lines
265 B
C#
Raw Normal View History

2019-03-17 04:50:33 +00:00
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; }
}
}