Files
2025-02-11 19:45:02 +00:00

6 lines
138 B
C#

namespace Toolkit.Foundation;
public interface IFolderPicker
{
Task<IReadOnlyCollection<string>> Get(FolderPickerPicker filter);
}