mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 05:42:46 +01: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);
|
|
}
|
|
}
|