BotSharp/BotSharp.Core/Engines/Sebis/SebisAgent.cs
2018-08-05 17:58:55 -05:00

21 lines
451 B
C#

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; }
public String Description { get; set; }
public String Language { get; set; }
public List<SebisIntent> Sentences { get; set; }
}
}