forked from joecastro/wpf-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJumpTask.cs
More file actions
26 lines (18 loc) · 718 Bytes
/
JumpTask.cs
File metadata and controls
26 lines (18 loc) · 718 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
/**************************************************************************\
Copyright Microsoft Corporation. All Rights Reserved.
\**************************************************************************/
namespace Microsoft.Windows.Shell
{
public class JumpTask : JumpItem
{
public JumpTask()
{}
public string Title { get; set; }
public string Description { get; set; }
public string ApplicationPath { get; set; }
public string Arguments { get; set; }
public string WorkingDirectory { get; set; }
public string IconResourcePath { get; set; }
public int IconResourceIndex { get; set; }
}
}