mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-27 01:12:32 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
28
src/ElectronNET.API/API/Entities/ShortcutLinkOperation.cs
Normal file
28
src/ElectronNET.API/API/Entities/ShortcutLinkOperation.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user