using System.Text.Json.Serialization; namespace ElectronNET.API.Entities { /// /// /// public class OpenDevToolsOptions { /// /// Opens the DevTools with specified dock state. Can be left, right, bottom, undocked, or detach. /// Defaults to the last used dock state. In undocked mode it's possible to dock back; in detach mode it's not. /// public DevToolsMode Mode { get; set; } /// /// Whether to bring the opened DevTools window to the foreground. Default is true. /// public bool Activate { get; set; } = true; /// /// A title for the DevTools window (only visible in undocked or detach mode). /// public string Title { get; set; } } }