// POST api/ping public test Post([FromBody]string value) { test newTest = new test(); newTest.alive = true; return newTest; }
// GET api/ping public test Get() { test newTest = new test(); newTest.alive = true; return newTest; }