Files
mixtape/zero.ApiTry/Controllers/Api/ByeApiController.cs
T
2021-12-13 11:37:45 +01:00

20 lines
319 B
C#

using Microsoft.AspNetCore.Mvc;
namespace zero.ApiTry
{
[ZeroSystemApi]
public class ByeController : AppApiController
{
[HttpGet("")]
public ActionResult Get()
{
return new JsonResult(new
{
success = true,
text = "Bye",
url = Url.Action()
});
}
}
}