namespace ElectronNET.API.Entities
{
using System.Runtime.Versioning;
///
///
///
public enum OpenDialogProperty
{
///
/// The open file
///
openFile,
///
/// The open directory
///
openDirectory,
///
/// The multi selections
///
multiSelections,
///
/// The show hidden files
///
showHiddenFiles,
///
/// The create directory
///
[SupportedOSPlatform("macos")]
createDirectory,
///
/// The prompt to create
///
[SupportedOSPlatform("windows")]
promptToCreate,
///
/// The no resolve aliases
///
[SupportedOSPlatform("macos")]
noResolveAliases,
///
/// The treat package as directory
///
[SupportedOSPlatform("macos")]
treatPackageAsDirectory,
///
/// Do not add the item being opened to the recent documents list (Windows).
///
[SupportedOSPlatform("windows")]
dontAddToRecent
}
}