Made improvements on loading photos

This commit is contained in:
Ano-sys
2026-03-21 14:40:30 +01:00
parent 7f632531fd
commit 54268fc0b4
8 changed files with 189 additions and 53 deletions
+8
View File
@@ -0,0 +1,8 @@
using System.Threading.Tasks;
namespace Photos.Models;
public interface IFolderPickerService
{
Task<string?> PickFolderAsync();
}