BotSharp/BotSharp.Platform.OwnThink/Models/OwnThinkAiRequest.cs
2019-03-22 06:23:03 -05:00

14 lines
252 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.OwnThink.Models
{
public class OwnThinkAiRequest
{
public string AppId { get; set; }
public string Spoken { get; set; }
}
}