BotSharp/BotSharp.Core/Engines/Dialogflow/DialogflowIntentEvent.cs

12 lines
211 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.Adapters.Dialogflow
{
public class DialogflowIntentEvent
{
public string Name { get; set; }
}
}