Files
Electron.NET/ElectronNET.API/Entities/AppDetailsOptions.cs

30 lines
892 B
C#
Raw Normal View History

2017-10-16 16:53:35 +02:00
namespace ElectronNET.API.Entities
{
public class AppDetailsOptions
{
/// <summary>
/// Windows App User Model ID. It has to be set, otherwise the other options will have no effect.
/// </summary>
public string AppId { get; set; }
/// <summary>
/// Windows Relaunch Icon.
/// </summary>
public string AppIconPath { get; set; }
/// <summary>
/// Index of the icon in appIconPath. Ignored when appIconPath is not set. Default is 0.
/// </summary>
public int AppIconIndex { get; set; }
/// <summary>
/// Windows Relaunch Command.
/// </summary>
public string RelaunchCommand { get; set; }
/// <summary>
/// Windows Relaunch Display Name.
/// </summary>
public string RelaunchDisplayName { get; set; }
}
}