HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator/Implementations/User_Authentication.cs
Im_Alpha c7815d215c renamed and reorganized solution file
completed isInputValid method
2021-12-12 04:43:20 -08:00

17 lines
423 B
C#

namespace TeamHobby.HobbyProjectGenerator
{
public class User_Authentication
{
public IList<string> GetAllUsers()
{
throw new NotImplementedException();
}
public bool User(string username)
{
//Console.WriteLine("Hello World!");
//Console.WriteLine("Testing console");
throw new NotImplementedException();
}
}
}