mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-04-28 17:11:14 +00:00
Implement all functions from the Electron App-API
This commit is contained in:
12
ElectronNET.API/Entities/UserTask.cs
Normal file
12
ElectronNET.API/Entities/UserTask.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public class UserTask
|
||||
{
|
||||
public string Arguments { get; set; }
|
||||
public string Description { get; set; }
|
||||
public int IconIndex { get; set; }
|
||||
public string IconPath { get; set; }
|
||||
public string Program { get; set; }
|
||||
public string Title { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user