mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-10 13:49:07 +00:00
16 lines
380 B
C#
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;
|
|
}
|
|
} |