mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 13:44:47 +00:00
10 lines
216 B
C#
10 lines
216 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
public class JumpListSettings
|
|
{
|
|
public int MinItems { get; set; } = 0;
|
|
|
|
public JumpListItem[] RemovedItems { get; set; } = new JumpListItem[0];
|
|
}
|
|
}
|