Initial Commit

This commit is contained in:
2016-07-27 00:32:34 -04:00
commit 8d162b2035
701 changed files with 188672 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PlutoServer.PracticeChoice {
public static class Utility {
public static bool IsAPIKeyValid(string apiKey) {
return string.Equals(apiKey, "PracticeChoice");
}
}
}