BotSharp/BotSharp.Core/Engines/Articulate/DomainModel.cs

24 lines
480 B
C#
Raw Normal View History

2018-09-28 00:49:43 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines.Articulate
{
public class DomainModel
{
public int Id { get; set; }
public string Agent { get; set; }
public string DomainName { get; set; }
public bool Enabled { get; set; }
public bool ExtraTrainingData { get; set; }
public decimal IntentThreshold { get; set; }
public string Status { get; set; }
}
}