jellyfin/MediaBrowser.Model/MediaInfo/IBlurayExaminer.cs

16 lines
386 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.MediaInfo
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Interface IBlurayExaminer.
2018-12-28 00:27:57 +01:00
/// </summary>
public interface IBlurayExaminer
{
/// <summary>
/// Gets the disc info.
/// </summary>
/// <param name="path">The path.</param>
/// <returns>BlurayDiscInfo.</returns>
BlurayDiscInfo GetDiscInfo(string path);
}
}