namespace ElectronNET.API.Entities { /// /// Options for app.relaunch: optional args array and execPath. /// /// Up-to-date with Electron API 39.2 public class RelaunchOptions { /// /// Command-line arguments for the relaunched instance. /// public string[] Args { get; set; } /// /// Executable path to relaunch instead of the current app. /// public string ExecPath { get; set; } } }