mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-28 18:15:47 +02:00
9 lines
185 B
C#
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();
|
|
}
|
|
}
|