mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-16 05:36:34 +00:00
15 lines
439 B
C#
15 lines
439 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
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; }
|
|
}
|
|
} |