6 lines
134 B
C#
6 lines
134 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IFilePicker
|
|
{
|
|
Task<IReadOnlyCollection<string>> Get(FilePickerFilter filter);
|
|
} |