HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator/Implementations/User_Authentication.cs
colincreasman 4f2f4c8fce Revised Logging LLD
Fixed entry point and added LogEntry class
2021-12-13 11:36:10 -08:00

17 lines
422 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();
}
}
}