mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
25 lines
534 B
C#
25 lines
534 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </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; }
|
|
}
|
|
}
|