BotSharp/BotSharp.RestApi/EntityItemController.cs

17 lines
319 B
C#
Raw Normal View History

2018-01-02 18:05:35 +00:00
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.RestApi
2018-01-02 18:05:35 +00:00
{
public class EntityItemController : EssentialController
{
[HttpPost]
public IActionResult CreateEntity()
{
return Ok();
}
}
}