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