From ef6b90b8e6e6c317fcda85a392c79324f91250db Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 25 Oct 2016 15:02:04 -0400 Subject: make controller project portable --- MediaBrowser.Model/IO/IShortcutHandler.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 MediaBrowser.Model/IO/IShortcutHandler.cs (limited to 'MediaBrowser.Model/IO/IShortcutHandler.cs') diff --git a/MediaBrowser.Model/IO/IShortcutHandler.cs b/MediaBrowser.Model/IO/IShortcutHandler.cs new file mode 100644 index 0000000000..16255e51f0 --- /dev/null +++ b/MediaBrowser.Model/IO/IShortcutHandler.cs @@ -0,0 +1,25 @@ + +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. + /// System.String. + void Create(string shortcutPath, string targetPath); + } +} -- cgit v1.2.3