BotSharp/src/Plugins/BotSharp.Plugin.RoutingSpeeder/Providers/Models/DialoguePredictionModel.cs

10 lines
269 B
C#
Raw Normal View History

2023-08-31 14:52:09 +00:00
namespace BotSharp.Plugin.RoutingSpeeder.Providers.Models;
public class DialoguePredictionModel
{
public int Id { get; set; }
2023-12-19 13:16:43 +00:00
public string Text { get; set; } = string.Empty;
2023-09-11 19:20:33 +00:00
public string? Label { get; set; }
public string? Prediction { get; set; }
2023-08-31 14:52:09 +00:00
}