BotSharp/BotSharp.Platform.OwnThink/Models/AgentModel.cs
2019-03-16 23:50:33 -05:00

25 lines
558 B
C#

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
{
public string AppId { get; set; }
public AgentModel()
{
}
[JsonProperty("entity_types")]
public List<EntityType> Entities { get; set; }
}
}