jellyfin/MediaBrowser.Model/IO/IIsoMount.cs

22 lines
494 B
C#
Raw Normal View History

2013-02-20 18:33:05 -07:00
using System;
2013-08-09 18:16:31 -07:00
namespace MediaBrowser.Model.IO
2013-02-20 18:33:05 -07:00
{
/// <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; }
}
}