using System.Runtime.Versioning; namespace ElectronNET.API.Entities { /// /// Controls the behavior of . /// /// Up-to-date with Electron API 39.2 public class FocusOptions { /// /// Make the receiver the active app even if another app is currently active. /// You should seek to use the steal option as sparingly as possible. /// [SupportedOSPlatform("macOS")] public bool Steal { get; set; } } }