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.
jellyfin/MediaBrowser.Model/IO/IIsoMount.cs

23 lines
485 B

using System;
namespace MediaBrowser.Model.IO
{
/// <summary>
/// Interface IIsoMount.
/// </summary>
public interface IIsoMount : IDisposable
{
/// <summary>
/// Gets 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; }
}
}