#pragma warning disable CS1591
namespace MediaBrowser.Model.IO
{
    public interface IShortcutHandler
    {
        /// 
        /// Gets the extension.
        /// 
        /// The extension.
        string Extension { get; }
        /// 
        /// Resolves the specified shortcut path.
        /// 
        /// The shortcut path.
        /// System.String.
        string Resolve(string shortcutPath);
        /// 
        /// Creates the specified shortcut path.
        /// 
        /// The shortcut path.
        /// The target path.
        void Create(string shortcutPath, string targetPath);
    }
}