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