BotSharp/BotSharp.Core/Engines/Sebis/SebisAgent.cs

21 lines
451 B
C#
Raw Normal View History

2018-08-03 22:18:40 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace BotSharp.Core.Adapters.Sebis
{
public class SebisAgent
{
public String Id { get; set; }
public String Name { get; set; }
2018-08-05 22:58:55 +00:00
2018-08-03 22:18:40 +00:00
public String Description { get; set; }
2018-08-05 22:58:55 +00:00
2018-08-03 22:18:40 +00:00
public String Language { get; set; }
public List<SebisIntent> Sentences { get; set; }
}
}