mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			485 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			485 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace MediaBrowser.Model.IO
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IIsoMount.
 | |
|     /// </summary>
 | |
|     public interface IIsoMount : IDisposable
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the iso path.
 | |
|         /// </summary>
 | |
|         /// <value>The iso path.</value>
 | |
|         string IsoPath { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the mounted path.
 | |
|         /// </summary>
 | |
|         /// <value>The mounted path.</value>
 | |
|         string MountedPath { get; }
 | |
|     }
 | |
| }
 |