· 5 years ago · Jun 17, 2020, 08:46 AM
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5
6namespace WebAPIController
7{
8 public static class APIKey
9 {
10
11 public static string GetAPIKey()
12 {
13 return "this is a nice api key, isn't it";
14 }
15 }
16}