mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-26 08:52:26 +00:00
Update all model classes to Electron API 39.2
This commit is contained in:
@@ -1,24 +1,19 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// Controls the behavior of <see cref="App.Relaunch(RelaunchOptions)"/>.
|
||||
/// Options for app.relaunch: optional args array and execPath.
|
||||
/// </summary>
|
||||
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
||||
public class RelaunchOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the arguments.
|
||||
/// Command-line arguments for the relaunched instance.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The arguments.
|
||||
/// </value>
|
||||
public string[] Args { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the execute path.
|
||||
/// Executable path to relaunch instead of the current app.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The execute path.
|
||||
/// </value>
|
||||
public string ExecPath { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user