BotSharp/BotSharp.Core/Models/NlpEntity.cs
2018-06-13 17:17:35 -05:00

23 lines
428 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Models
{
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; }
}
}