mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			809 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			809 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| namespace MediaBrowser.Model.IO
 | |
| {
 | |
|     public interface IShortcutHandler
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the extension.
 | |
|         /// </summary>
 | |
|         /// <value>The extension.</value>
 | |
|         string Extension { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Resolves the specified shortcut path.
 | |
|         /// </summary>
 | |
|         /// <param name="shortcutPath">The shortcut path.</param>
 | |
|         /// <returns>System.String.</returns>
 | |
|         string? Resolve(string shortcutPath);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Creates the specified shortcut path.
 | |
|         /// </summary>
 | |
|         /// <param name="shortcutPath">The shortcut path.</param>
 | |
|         /// <param name="targetPath">The target path.</param>
 | |
|         void Create(string shortcutPath, string targetPath);
 | |
|     }
 | |
| }
 |