Implement all functions from the Electron App-API

This commit is contained in:
Gregor Biswanger
2017-10-14 00:06:58 +02:00
parent 5f0be6543b
commit aa526c4bcb
24 changed files with 1448 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
namespace ElectronNET.API.Entities
{
public class JumpListItem
{
public string Args { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public int IconIndex { get; set; } = 0;
public string IconPath { get; set; } = string.Empty;
public string Path { get; set; } = string.Empty;
public string Program { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public string Type {get; set; } = string.Empty;
}
}