JumpItem.cs 173 B

123456789101112
  1. using System;
  2. namespace Microsoft.Windows.Shell;
  3. public abstract class JumpItem
  4. {
  5. internal JumpItem()
  6. {
  7. }
  8. public string CustomCategory { get; set; }
  9. }