using System.Threading.Tasks; namespace Harmonia.WinUI.Storage; public interface IStorageProvider { public Task GetFileAsync(FilePickerOptions? options = null); public Task GetFilesAsync(FilePickerOptions? options = null); public Task GetPathAsync(); }