using BotSharp.Core.Abstractions; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.Engines.NERs { public class WitAiEntityRecognizer : INlpNer { public List Ontologies { get { return new List { OntologyEnum.DateTime, OntologyEnum.Location }; } } } }