using System; namespace TeamHobby.HobbyProjectGenerator.Logging { public class FileLogger : ILogger { public IList GetAllLogs() { throw new NotImplementedException(); } public bool Log(string description) { throw new NotImplementedException(); } } }