mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-25 00:15:22 +00:00
Implement all functions from the Electron App-API
This commit is contained in:
14
ElectronNET.API/Entities/JumpListItem.cs
Normal file
14
ElectronNET.API/Entities/JumpListItem.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user