mirror of
https://github.com/oMaN-Rod/nxDumpFuse.git
synced 2025-01-15 20:21:28 +00:00
12 lines
289 B
C#
12 lines
289 B
C#
using System.Threading.Tasks;
|
|
using Avalonia.Controls;
|
|
|
|
namespace nxDumpFuse.Services
|
|
{
|
|
public interface IDialogService
|
|
{
|
|
Task<string> ShowOpenFileDialogAsync(string title, FileDialogFilter filter);
|
|
|
|
Task<string> ShowOpenFolderDialogAsync(string title);
|
|
}
|
|
}
|