BotSharp/Platform.Articulate/Models/DomainModel.cs

32 lines
662 B
C#
Raw Normal View History

2018-09-29 18:18:34 +00:00
using BotSharp.Platform.Models;
using System;
2018-09-28 00:49:43 +00:00
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
2018-09-28 00:49:43 +00:00
{
public class DomainModel
{
2018-09-30 15:11:36 +00:00
public DomainModel()
{
Intents = new List<IntentModel>();
}
2018-09-29 18:18:34 +00:00
public string Id { get; set; }
2018-09-28 00:49:43 +00:00
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; }
2018-09-29 18:18:34 +00:00
2018-09-30 15:11:36 +00:00
public List<IntentModel> Intents { get; set; }
2018-09-28 00:49:43 +00:00
}
}