mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-19 20:04:37 +02:00
9 lines
201 B
C#
9 lines
201 B
C#
using System;
|
|
using TweetLib.Utils.Dialogs;
|
|
|
|
namespace TweetLib.Core.Application {
|
|
public interface IAppFileDialogs {
|
|
void SaveFile(SaveFileDialogSettings settings, Action<string> onAccepted);
|
|
}
|
|
}
|