HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Logging/Implementations/DBLogger.cs
2022-01-04 12:55:32 -08:00

24 lines
388 B
C#

using System;
namespace TeamHobby.HobbyProjectGenerator.Logging
{
public class DBLogger : ILogger
{
public DBLogger()
{
}
public IList<string> GetAllLogs()
{
throw new NotImplementedException();
}
public bool Log(LogEntry log)
{
throw new NotImplementedException();
}
}
}