22 lines
495 B
C#
22 lines
495 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MediaBrowser.Common.IO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface IIsoMount
|
|||
|
/// </summary>
|
|||
|
public interface IIsoMount : IDisposable
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets 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; }
|
|||
|
}
|
|||
|
}
|