BotSharp/BotSharp.NLP/Sentence.cs
2018-08-16 17:27:50 -05:00

13 lines
212 B
C#

using BotSharp.NLP.Tokenize;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP
{
public class Sentence
{
public List<Token> Words { get; set; }
}
}