using System; namespace MediaBrowser.Model.IO { /// /// Interface IIsoMount /// public interface IIsoMount : IDisposable { /// /// Gets or sets the iso path. /// /// The iso path. string IsoPath { get; } /// /// Gets the mounted path. /// /// The mounted path. string MountedPath { get; } } }