BotSharp/BotSharp.Core/Engines/Sebis/SebisIntent.cs

17 lines
389 B
C#
Raw Normal View History

2018-08-03 22:18:40 +00:00
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; }
}
}