BotSharp/BotSharp.Core/Engines/Rasa/RasaIntentExpression.cs

16 lines
333 B
C#
Raw Normal View History

using BotSharp.Core.Adapters.Rasa;
using BotSharp.Core.Engines;
using BotSharp.Platform.Models;
using Newtonsoft.Json;
2018-06-18 22:15:32 +00:00
using System;
2018-03-28 22:08:49 +00:00
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Models
{
public class RasaIntentExpression : TrainingIntentExpression<TrainingIntentExpressionPart>
2018-03-28 22:08:49 +00:00
{
}
}