18 lines
361 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|