BotSharp/Platform.Articulate/Models/AgentModel.cs

40 lines
940 B
C#
Raw Normal View History

2018-09-29 18:18:34 +00:00
using BotSharp.Platform.Models;
using Newtonsoft.Json;
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
{
2018-09-29 18:18:34 +00:00
public class AgentModel : AgentBase
2018-09-28 00:49:43 +00:00
{
2018-09-29 18:18:34 +00:00
public AgentModel()
{
Domains = new List<DomainModel>();
Entities = new List<EntityBase>();
}
2018-09-28 00:49:43 +00:00
public string Status { get; set; }
public string Timezone { get; set; }
public string AgentName { get; set; }
public bool UseWebhook { get; set; }
public bool UsePostFormat { get; set; }
public bool ExtraTrainingData { get; set; }
public List<String> FallbackResponses { get; set; }
public bool EnableModelsPerDomain { get; set; }
public decimal DomainClassifierThreshold { get; set; }
2018-09-29 18:18:34 +00:00
public List<DomainModel> Domains { get; set; }
public List<EntityBase> Entities { get; set; }
2018-09-28 00:49:43 +00:00
}
}