diff --git a/privateFunctions.cs b/privateFunctions.cs new file mode 100644 index 0000000..0ac43e9 --- /dev/null +++ b/privateFunctions.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Pithos +{ + class privateFunctions { + public static List validUserNames() { + List valids = new List(); + valids.Add("Jake"); + valids.Add("13HowardJS03"); + return valids; + } + + public static List validMachineNames() + { + List valids = new List(); + valids.Add(")"); + return valids; + } + } +}