mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
29 lines
711 B
C#
29 lines
711 B
C#
using System.ComponentModel;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Defines the ShortcutLinkOperation enumeration.
|
|
/// </summary>
|
|
public enum ShortcutLinkOperation
|
|
{
|
|
/// <summary>
|
|
/// Creates a new shortcut, overwriting if necessary.
|
|
/// </summary>
|
|
[Description("create")]
|
|
Create,
|
|
|
|
/// <summary>
|
|
/// Updates specified properties only on an existing shortcut.
|
|
/// </summary>
|
|
[Description("update")]
|
|
Update,
|
|
|
|
/// <summary>
|
|
/// Overwrites an existing shortcut, fails if the shortcut doesn't exist.
|
|
/// </summary>
|
|
[Description("replace")]
|
|
Replace
|
|
}
|
|
}
|