BotSharp/BotSharp.Core/Engines/Sebis/SebisIntent.cs
2018-08-03 17:18:40 -05:00

17 lines
389 B
C#

using BotSharp.Core.Intents;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Adapters.Sebis
{
public class SebisIntent
{
public string Text { get; set; }
[JsonProperty("intent")]
public string Name { get; set; }
public List<SebisIntentExpressionPart> Entities { get; set; }
}
}