BotSharp/BotSharp.Platform.OwnThink/Models/OwnThinkAiRequest.cs

14 lines
252 B
C#
Raw Normal View History

2019-03-22 11:23:03 +00:00
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; }
}
}