Files
Electron.NET/ElectronNET.API/Entities/OpenExternalOptions.cs

13 lines
334 B
C#

using System.ComponentModel;
namespace ElectronNET.API.Entities
{
public class OpenExternalOptions
{
/// <summary>
/// true to bring the opened application to the foreground. The default is true.
/// </summary>
[DefaultValue(true)]
public bool Activate { get; set; } = true;
}
}