1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-28 18:15:47 +02:00
TweetDuck/lib/TweetLib.Core/Application/IAppLogger.cs

9 lines
185 B
C#

namespace TweetLib.Core.Application {
public interface IAppLogger {
bool Debug(string message);
bool Info(string message);
bool Error(string message);
bool OpenLogFile();
}
}