using BotSharp.MachineLearning.NLP; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.Engines { public class NlpDoc { public List Sentences { get; set; } } public class NlpDocSentence { public string Text { get; set; } public List Tokens { get; set; } public List Entities { get; set; } public TextClassificationResult Intent { get; set; } } }