mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 13:44:38 +00:00
18 lines
485 B
C#
18 lines
485 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class LoginItemSettingsOptions
|
|
{
|
|
/// <summary>
|
|
/// The executable path to compare against. Defaults to process.execPath.
|
|
/// </summary>
|
|
public string Path { get; set; }
|
|
|
|
/// <summary>
|
|
/// The command-line arguments to compare against. Defaults to an empty array.
|
|
/// </summary>
|
|
public string[] Args { get; set; }
|
|
}
|
|
} |