BotSharp/BotSharp.Platform.Articulate/Models/SettingsModel.cs

39 lines
1 KiB
C#
Raw Normal View History

2019-03-16 16:34:32 +00:00
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class SettingsModel
{
public string DucklingURL { get; set; }
public string UiLanguage { get; set; }
public string DefaultAgentLanguage { get; set; }
public string DefaultTimezone { get; set; }
public List<String> Timezones { get; set; }
public List<PipelineModel> DomainClassifierPipeline { get; set; }
public List<PipelineModel> IntentClassifierPipeline { get; set; }
public List<String> DucklingDimension { get; set; }
public List<PipelineModel> EntityClassifierPipeline { get; set; }
public List<String> DefaultAgentFallbackResponses { get; set; }
public string RasaURL { get; set; }
public List<String> SpacyPretrainedEntities { get; set; }
public List<LanguageModel> AgentLanguages { get; set; }
public List<LanguageModel> UiLanguages { get; set; }
}
}