27 lines
564 B
C#
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; }
|
|
}
|
|
}
|