using System.Collections.Generic; namespace Avalonia.Platform.Storage; /// /// Options class for method. /// public class FilePickerOpenOptions : PickerOptions { /// /// Gets or sets the file type that should be preselected when the dialog is opened. /// /// /// This value should reference one of the items in . /// If not set, the first file type in may be selected by default. /// public FilePickerFileType? SuggestedFileType { get; set; } /// /// Gets or sets an option indicating whether open picker allows users to select multiple files. /// public bool AllowMultiple { get; set; } /// /// Gets or sets the collection of file types that the file open picker displays. /// public IReadOnlyList? FileTypeFilter { get; set; } }