namespace ElectronNET.API.Entities
{
///
///
///
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.
///
public string AppIconPath { get; set; }
///
/// Index of the icon in appIconPath. Ignored when appIconPath 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; }
}
}