Files
Electron.NET/ElectronNET.API/Entities/ShortcutLinkOperation.cs
2017-10-24 21:43:27 +02:00

23 lines
530 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace ElectronNET.API
{
/// <summary>
///
/// </summary>
public enum ShortcutLinkOperation
{
/// <summary>
/// Creates a new shortcut, overwriting if necessary.
/// </summary>
create,
/// <summary>
/// Updates specified properties only on an existing shortcut.
/// </summary>
update,
/// <summary>
/// Overwrites an existing shortcut, fails if the shortcut doesnt exist.
/// </summary>
replace
}
}