BotSharp/BotSharp.NLP/Sentence.cs

17 lines
297 B
C#
Raw Normal View History

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; }
2018-09-09 03:59:01 +00:00
public String Label { get; set; }
public String Text { get; set; }
}
}