mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 13:44:34 +00:00
* Summaries rewritten * Added new parameters / Removed not supported parameters * Added some new methods like appFocus(options), appHasSingleLock, etc.
27 lines
768 B
C#
27 lines
768 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class JumpListCategory
|
|
{
|
|
/// <summary>
|
|
/// Must be set if type is custom, otherwise it should be omitted.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Array of objects if type is tasks or custom, otherwise it should be omitted.
|
|
/// </summary>
|
|
public JumpListItem[] Items { get; set; }
|
|
|
|
/// <summary>
|
|
/// One of the following: "tasks" | "frequent" | "recent" | "custom"
|
|
/// </summary>
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public JumpListCategoryType Type { get; set; }
|
|
}
|
|
} |