mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-23 05:04:36 +02:00
9 lines
280 B
C#
9 lines
280 B
C#
using TweetLib.Core.Systems.Dialogs;
|
|
|
|
namespace TweetLib.Core.Application {
|
|
public interface IAppMessageDialogs {
|
|
void Information(string caption, string text, string buttonAccept = Dialogs.OK);
|
|
void Error(string caption, string text, string buttonAccept = Dialogs.OK);
|
|
}
|
|
}
|