BotSharp/BotSharp.Platform.Dialogflow/Models/AIResponseFulfillment.cs

14 lines
267 B
C#
Raw Normal View History

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