forked from ElectronNET/Electron.NET
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppDetailsOptions.cs
More file actions
33 lines (29 loc) · 938 Bytes
/
Copy pathAppDetailsOptions.cs
File metadata and controls
33 lines (29 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public class AppDetailsOptions
{
/// <summary>
/// Window’s App User Model ID. It has to be set, otherwise the other options will have no effect.
/// </summary>
public string AppId { get; set; }
/// <summary>
/// Window’s 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>
/// Window’s Relaunch Command.
/// </summary>
public string RelaunchCommand { get; set; }
/// <summary>
/// Window’s Relaunch Display Name.
/// </summary>
public string RelaunchDisplayName { get; set; }
}
}