using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; namespace ChrisKaczor.HomeMonitor.Hub.Service.Controllers { [Route("[controller]")] [ApiController] public class ValuesController : ControllerBase { // GET values [HttpGet] public ActionResult> Get() { return new[] { "value1", "value2" }; } } }