reworked iso manager

This commit is contained in:
Luke Pulverenti
2013-08-09 21:16:31 -04:00
parent 3b25b4d5b2
commit e0c387446b
26 changed files with 122 additions and 24 deletions

View File

@@ -0,0 +1,22 @@
using System;
namespace MediaBrowser.Model.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; }
}
}