Files
Electron.NET/ElectronNET.API/Entities/RelaunchOptions.cs
2017-10-24 21:43:27 +02:00

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; }
}
}