using System.ComponentModel; namespace ElectronNET.API.Entities { /// /// Defines the ShortcutLinkOperation enumeration. /// public enum ShortcutLinkOperation { /// /// Creates a new shortcut, overwriting if necessary. /// [Description("create")] Create, /// /// Updates specified properties only on an existing shortcut. /// [Description("update")] Update, /// /// Overwrites an existing shortcut, fails if the shortcut doesn't exist. /// [Description("replace")] Replace } }