BotSharp/BotSharp.Core/Agents/AgentMlConfig.cs
2018-07-12 10:07:05 -05:00

28 lines
668 B
C#

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_AgentMlConfig")]
public class AgentMlConfig : DbRecord, IDbRecord
{
[Required]
[StringLength(36)]
public String AgentId { get; set; }
[Required]
public decimal MinConfidence { get; set; }
[Required]
[MaxLength(64)]
public string CustomClassifierMode { get; set; }
[MaxLength(64)]
public String Pipeline { get; set; }
}
}