mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
10 lines
293 B
C#
10 lines
293 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using TweetLib.Utils.Dialogs;
|
|
|
|
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IFileDialogOpener {
|
|
void OpenFile(string title, bool multiple, List<FileDialogFilter> filters, Action<string[]> onAccepted, Action onCancelled);
|
|
}
|
|
}
|