2020-05-27 00:51:48 +02:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ElectronNET.API.Entities
|
2017-10-21 04:37:01 +02:00
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2020-05-27 01:04:28 +02:00
|
|
|
|
/// Defines the ShortcutLinkOperation enumeration.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2017-10-21 04:37:01 +02:00
|
|
|
|
public enum ShortcutLinkOperation
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Creates a new shortcut, overwriting if necessary.
|
|
|
|
|
|
/// </summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
[Description("create")]
|
|
|
|
|
|
Create,
|
2017-10-21 04:37:01 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Updates specified properties only on an existing shortcut.
|
|
|
|
|
|
/// </summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
[Description("update")]
|
|
|
|
|
|
Update,
|
2017-10-21 04:37:01 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
/// Overwrites an existing shortcut, fails if the shortcut doesn't exist.
|
2017-10-21 04:37:01 +02:00
|
|
|
|
/// </summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
[Description("replace")]
|
|
|
|
|
|
Replace
|
2017-10-21 04:37:01 +02:00
|
|
|
|
}
|
2020-05-27 01:04:28 +02:00
|
|
|
|
}
|