mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 21:23:48 +00:00
13 lines
348 B
C#
13 lines
348 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|