BotSharp/BotSharp.RestApi/EntityController.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -05:00

18 lines
367 B
C#

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