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

22 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamHobby.HobbyProjectGenerator.Implementations
{
public class User_Manager
{
public IList<string> GetAllUsers()
{
throw new NotImplementedException();
}
public bool User(string username)
{
throw new NotImplementedException();
}
}
}