BotSharp/Bot.Rasa.RestApi/EntityController.cs
2017-12-30 14:26:35 -06:00

18 lines
361 B
C#

using Bot.Rasa.Entities;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Rasa.RestApi
{
public class EntityController : EssentialController
{
[HttpPost]
public string CreateEntity([FromBody] EntityType entity)
{
return entity.Id;
}
}
}