2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.IO
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Interface IIsoMount.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public interface IIsoMount : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-05 09:10:56 -07:00
|
|
|
/// Gets the iso path.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The iso path.</value>
|
|
|
|
string IsoPath { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the mounted path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The mounted path.</value>
|
|
|
|
string MountedPath { get; }
|
|
|
|
}
|
2019-01-13 12:31:15 -07:00
|
|
|
}
|