BotSharp/src/Plugins/BotSharp.Plugin.RoutingSpeeder/Providers/Models/DialoguePredictionModel.cs
2023-12-19 07:16:43 -06:00

10 lines
269 B
C#

namespace BotSharp.Plugin.RoutingSpeeder.Providers.Models;
public class DialoguePredictionModel
{
public int Id { get; set; }
public string Text { get; set; } = string.Empty;
public string? Label { get; set; }
public string? Prediction { get; set; }
}