jellyfin/MediaBrowser.Common/IO/IIsoMount.cs

22 lines
495 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using System;
namespace MediaBrowser.Common.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; }
}
}