mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-27 17:32:14 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
24
src/ElectronNET.API/API/Entities/RelaunchOptions.cs
Normal file
24
src/ElectronNET.API/API/Entities/RelaunchOptions.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// Controls the behavior of <see cref="App.Relaunch(RelaunchOptions)"/>.
|
||||
/// </summary>
|
||||
public class RelaunchOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the arguments.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The arguments.
|
||||
/// </value>
|
||||
public string[] Args { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the execute path.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The execute path.
|
||||
/// </value>
|
||||
public string ExecPath { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user