You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
494 B
22 lines
494 B
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; }
|
|
}
|
|
} |