17 lines
423 B
C#
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();
|
|
}
|
|
}
|
|
} |