12 lines
206 B
C#
12 lines
206 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Bot.Rasa.Adapters.Dialogflow
|
|||
|
|
{
|
|||
|
|
public class DialogflowIntentEvent
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|