mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-23 13:59:05 +02:00
7 lines
174 B
C#
7 lines
174 B
C#
namespace TweetLib.Core.Application {
|
|
public interface IAppMessageDialogs {
|
|
void Information(string caption, string text);
|
|
void Error(string caption, string text);
|
|
}
|
|
}
|