aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaInfo/IBlurayExaminer.cs
blob: 78d5b197f4301a244ed5456354a4d1ca9fc10c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace MediaBrowser.Model.MediaInfo
{
    /// <summary>
    /// Interface IBlurayExaminer
    /// </summary>
    public interface IBlurayExaminer
    {
        /// <summary>
        /// Gets the disc info.
        /// </summary>
        /// <param name="path">The path.</param>
        /// <returns>BlurayDiscInfo.</returns>
        BlurayDiscInfo GetDiscInfo(string path);
    }
}