mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-28 09:15:46 +02:00
12 lines
403 B
C#
12 lines
403 B
C#
using System;
|
|
using TweetLib.Core.Systems.Dialogs;
|
|
|
|
namespace TweetLib.Core.Application {
|
|
public interface IAppDialogHandler {
|
|
void Information(string caption, string text, string buttonAccept, string? buttonCancel = null);
|
|
void Error(string caption, string text, string buttonAccept, string? buttonCancel = null);
|
|
|
|
void SaveFile(SaveFileDialogSettings settings, Action<string> onAccepted);
|
|
}
|
|
}
|