This repository has been archived on 2023-06-30. You can view files and clone it, but cannot push or open issues or pull requests.
2chBackAPI/Controllers/TestPosting.cs
rak 13acfdc7da
All checks were successful
continuous-integration/drone/push Build is passing
Added Test echo posting2
2022-10-18 22:35:19 +10:00

18 lines
454 B
C#

using Microsoft.AspNetCore.Mvc;
using System.Text.Json;
namespace NeDvachAPI.Controllers
{
[ApiController]
[Route("[controller]")]
public class TestPostingController : ControllerBase
{
[HttpPost]
public string Area(int altitude , int height)
{
//DBchat.SendPost(ReceivedPost);
return $"Первое значение {altitude} и второе значение {height}";
}
}
}