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

16 lines
380 B
C#

using System.ComponentModel;
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
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;
}
}