using System; using System.Collections.Generic; using System.Text; namespace Platform.Articulate.Models { public class AgentModel { public string Id { get; set; } public string Status { get; set; } public string Timezone { get; set; } public string Language { get; set; } public string AgentName { get; set; } public bool UseWebhook { get; set; } public string Description { get; set; } public bool UsePostFormat { get; set; } public bool ExtraTrainingData { get; set; } public List FallbackResponses { get; set; } public bool EnableModelsPerDomain { get; set; } public decimal DomainClassifierThreshold { get; set; } } }