aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IIsoMount.cs
blob: ea65d976a06bce4092f49ab451199b7934a2ddd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

namespace MediaBrowser.Model.IO
{
    /// <summary>
    /// Interface IIsoMount.
    /// </summary>
    public interface IIsoMount : IDisposable
    {
        /// <summary>
        /// Gets 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; }
    }
}