namespace ElectronNET.API { /// /// /// public class ShortcutDetails { /// /// The Application User Model ID. Default is empty. /// public string AppUserModelId { get; set; } /// /// The arguments to be applied to target when launching from this shortcut. Default is empty. /// public string Args { get; set; } /// /// The working directory. Default is empty. /// public string Cwd { get; set; } /// /// The description of the shortcut. Default is empty. /// public string Description { get; set; } /// /// The path to the icon, can be a DLL or EXE. icon and iconIndex have to be set /// together.Default is empty, which uses the target's icon. /// public string Icon { get; set; } /// /// The resource ID of icon when icon is a DLL or EXE. Default is 0. /// public int IconIndex { get; set; } /// /// The target to launch from this shortcut. /// public string Target { get; set; } } }