jellyfin/MediaBrowser.Model/IO/IIsoMount.cs

23 lines
485 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.IO
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Interface IIsoMount.
2018-12-28 00:27:57 +01:00
/// </summary>
public interface IIsoMount : IDisposable
{
/// <summary>
/// Gets the iso path.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <value>The iso path.</value>
string IsoPath { get; }
/// <summary>
/// Gets the mounted path.
/// </summary>
/// <value>The mounted path.</value>
string MountedPath { get; }
}
}