using System.ComponentModel;
using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
{
///
/// Defines the ShortcutLinkOperation enumeration.
///
/// Up-to-date with Electron API 39.2
[SupportedOSPlatform("Windows")]
public enum ShortcutLinkOperation
{
///
/// Creates a new shortcut, overwriting if necessary.
///
Create,
///
/// Updates specified properties only on an existing shortcut.
///
Update,
///
/// Overwrites an existing shortcut, fails if the shortcut doesn't exist.
///
Replace
}
}