2019-03-16 16:23:02 +00:00
|
|
|
|
using BotSharp.Platform.Models;
|
|
|
|
|
|
using BotSharp.Platform.Models.Intents;
|
|
|
|
|
|
using BotSharp.Platform.Models.MachineLearning;
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Platform.OwnThink.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AgentModel : AgentBase
|
|
|
|
|
|
{
|
2019-03-17 04:50:33 +00:00
|
|
|
|
public string AppId { get; set; }
|
|
|
|
|
|
|
2019-03-16 16:23:02 +00:00
|
|
|
|
public AgentModel()
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("entity_types")]
|
|
|
|
|
|
public List<EntityType> Entities { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|