JumpTask.cs 414 B

1234567891011121314151617181920
  1. using System;
  2. namespace Microsoft.Windows.Shell;
  3. public class JumpTask : JumpItem
  4. {
  5. public string Title { get; set; }
  6. public string Description { get; set; }
  7. public string ApplicationPath { get; set; }
  8. public string Arguments { get; set; }
  9. public string WorkingDirectory { get; set; }
  10. public string IconResourcePath { get; set; }
  11. public int IconResourceIndex { get; set; }
  12. }