BotSharp/BotSharp.Platform.Models/AiResponse/TextClassificationResult.cs
2018-10-25 21:30:59 -05:00

18 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.AiResponse
{
public class TextClassificationResult
{
public String Classifier { get; set; }
public String Label { get; set; }
public string Text { get; set; }
public double Confidence { get; set; }
}
}