BotSharp/BotSharp.MachineLearning/NLP/NlpEntity.cs
2018-07-17 11:22:31 -05:00

23 lines
436 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.MachineLearning.NLP
{
public class NlpEntity
{
/// <summary>
/// Entity label
/// </summary>
public string Entity { get; set; }
public string Value { get; set; }
public int Start { get; set; }
public decimal Confidence { get; set; }
public int End { get; set; }
}
}