namespace ElectronNET.API.Entities
{
///
/// Controls the behavior of .
///
public class FocusOptions
{
///
/// Make the receiver the active app even if another app is currently active.
///
/// You should seek to use the option as sparingly as possible.
///
public bool Steal { get; set; }
}
}