2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.IO
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Interface IIsoMount.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public interface IIsoMount : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-05 16:10:56 +00:00
|
|
|
/// Gets the iso path.
|
2018-12-27 23:27:57 +00: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 19:31:15 +00:00
|
|
|
}
|