using System.Runtime.Versioning; namespace ElectronNET.API.Entities { /// /// /// /// Up-to-date with Electron API 39.2 [SupportedOSPlatform("windows")] public class AppDetailsOptions { /// /// Window's App User Model ID. It has to be set, otherwise the other options will have no effect. /// public string AppId { get; set; } /// /// Window's relaunch icon resource path. /// public string AppIconPath { get; set; } /// /// Index of the icon in . Ignored when is not set. Default is 0. /// public int AppIconIndex { get; set; } /// /// Window's relaunch command. /// public string RelaunchCommand { get; set; } /// /// Window's relaunch display name. /// public string RelaunchDisplayName { get; set; } } }