using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Net; namespace download; public class ApiController : Controller { public IActionResult Get(string? key) { return StatusCode((int)HttpStatusCode.OK, "Hello World - " + key); } }