HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Logging/Contracts/ILogger.cs
2021-12-14 02:20:10 -08:00

17 lines
291 B
C#

/*using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamHobby.HobbyProjectGenerator.Logging
{
public interface ILogger
{
bool Log(LogEntry log);
// IList<string> GetAllLogs();
}
}
*/