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