13 lines
298 B
C#
13 lines
298 B
C#
using System.Collections.Generic;
|
|
using System.Web.Http;
|
|
|
|
namespace WindowsDataCenter
|
|
{
|
|
public class ValuesController : ApiController
|
|
{
|
|
public IEnumerable<string> Get()
|
|
{
|
|
return new List<string> { "ASP.NET", "Docker", "Windows Containers" };
|
|
}
|
|
}
|
|
} |