2021-12-13 01:10:54 +01:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace zero.ApiTry
|
|
|
|
|
{
|
|
|
|
|
public class HelloController : AppApiController
|
|
|
|
|
{
|
|
|
|
|
[HttpGet("")]
|
|
|
|
|
public ActionResult Get()
|
|
|
|
|
{
|
|
|
|
|
return new JsonResult(new
|
|
|
|
|
{
|
|
|
|
|
success = true,
|
2021-12-13 11:37:45 +01:00
|
|
|
text = "Hello",
|
|
|
|
|
url = Url.Action()
|
2021-12-13 01:10:54 +01:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|