BotSharp/BotSharp.NLP/Sentence.cs

13 lines
212 B
C#
Raw Normal View History

2018-08-16 22:27:50 +00:00
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; }
}
}