1
0
Fork 0
mirror of https://github.com/oMaN-Rod/nxDumpFuse.git synced 2025-02-12 11:45:18 +00:00
nxDumpFuse/src/nxDumpFuse/Services/IDialogService.cs

13 lines
289 B
C#
Raw Permalink Normal View History

2021-10-21 22:22:45 -04:00
using System.Threading.Tasks;
using Avalonia.Controls;
2021-11-02 08:19:59 -04:00
namespace nxDumpFuse.Services
2021-10-21 22:22:45 -04:00
{
public interface IDialogService
{
Task<string> ShowOpenFileDialogAsync(string title, FileDialogFilter filter);
Task<string> ShowOpenFolderDialogAsync(string title);
}
}