BotSharp/Bot.Rasa/Adapters/Dialogflow/DialogflowIntentEvent.cs

12 lines
206 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.Adapters.Dialogflow
{
public class DialogflowIntentEvent
{
public string Name { get; set; }
}
}