Files
SimplePhotosApp/Photos/Models/IFolderPickerService.cs
2026-03-21 14:40:30 +01:00

8 lines
135 B
C#

using System.Threading.Tasks;
namespace Photos.Models;
public interface IFolderPickerService
{
Task<string?> PickFolderAsync();
}