namespace ElectronNET.API.Entities
{
///
///
///
public class UserTask
{
///
/// Gets or sets the arguments.
///
///
/// The arguments.
///
public string Arguments { get; set; }
///
/// Gets or sets the description.
///
///
/// The description.
///
public string Description { get; set; }
///
/// Gets or sets the index of the icon.
///
///
/// The index of the icon.
///
public int IconIndex { get; set; }
///
/// Gets or sets the icon path.
///
///
/// The icon path.
///
public string IconPath { get; set; }
///
/// Gets or sets the program.
///
///
/// The program.
///
public string Program { get; set; }
///
/// Gets or sets the title.
///
///
/// The title.
///
public string Title { get; set; }
///
/// The working directory. Default is .
///
public string WorkingDirectory { get; set; }
}
}