Created
April 7, 2018 10:01
-
-
Save talkingdotnet/f2982953ac241bf83e8af8a519a0ad24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static string[] Summaries = new[] | |
{ | |
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" | |
}; | |
[HttpGet("[action]")] | |
public string[] GetSummaries() | |
{ | |
return Summaries; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment