jellyfin/MediaBrowser.Model/IO/IIsoMount.cs

22 lines
494 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using System;
2013-08-10 03:16:31 +02:00
namespace MediaBrowser.Model.IO
2013-02-21 02:33:05 +01: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; }
}
}