2018-08-03 22:18:40 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using BotSharp.Core.Engines;
|
2018-10-01 13:36:39 +00:00
|
|
|
using BotSharp.Platform.Models;
|
2018-08-03 22:18:40 +00:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Adapters.Sebis
|
|
|
|
|
{
|
|
|
|
|
public class SebisIntentExpressionPart : TrainingIntentExpressionPart
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("stop")]
|
|
|
|
|
public new int End { get; set; }
|
|
|
|
|
[JsonProperty("text")]
|
|
|
|
|
public new String Value { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|