File: src\Framework\System\Windows\Shell\JumpPath.cs
Project: wpf\PresentationFramework.csproj (PresentationFramework)
/**************************************************************************\
    Copyright Microsoft Corporation. All Rights Reserved.
\**************************************************************************/
 
namespace System.Windows.Shell
{
    public class JumpPath : JumpItem
    {
        public JumpPath() : base()
        {}
 
        public string Path { get; set; }
    }
}