namespace ElectronNET.API.Entities
{
///
///
///
public class LoginItemSettingsOptions
{
///
/// The executable path to compare against. Defaults to process.execPath.
///
public string Path { get; set; }
///
/// The command-line arguments to compare against. Defaults to an empty array.
///
public string[] Args { get; set; }
}
}