BotSharp/Platform.Articulate/Models/DomainModel.cs
2018-09-29 13:18:34 -05:00

27 lines
564 B
C#

using BotSharp.Platform.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
{
public class DomainModel
{
public string 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; }
public List<IntentBase> Intents { get; set; }
}
}