Added view models and storage providers.
This commit is contained in:
10
Harmonia.WinUI/Storage/IStorageProvider.cs
Normal file
10
Harmonia.WinUI/Storage/IStorageProvider.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Harmonia.WinUI.Storage;
|
||||
|
||||
public interface IStorageProvider
|
||||
{
|
||||
public Task<string> GetFileAsync(FilePickerOptions? options = null);
|
||||
public Task<string[]> GetFilesAsync(FilePickerOptions? options = null);
|
||||
public Task<string> GetPathAsync();
|
||||
}
|
||||
Reference in New Issue
Block a user