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