using System.Collections.Generic; namespace Harmonia.WinUI.Storage; public class FilePickerOptions { public IReadOnlyList FileTypeFilter { get; set; } = []; public StoragePickerViewMode ViewMode { get; set; } }