BotSharp/BotSharp.Core/Agents/AgentTrainConfig.cs

22 lines
549 B
C#
Raw Normal View History

2018-06-25 12:38:34 +00:00
using EntityFrameworkCore.BootKit;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BotSharp.Core.Agents
{
[Table("Bot_AgentTrainConfig")]
public class AgentTrainConfig : DbRecord, IDbRecord
{
[Required]
[StringLength(36)]
public String AgentId { get; set; }
public decimal ClassificationThreshould { get; set; }
public String Pipeline { get; set; }
}
}