jellyfin/MediaBrowser.Model/MediaInfo/IBlurayExaminer.cs

15 lines
336 B
C#
Raw Normal View History

2023-02-18 08:42:35 -05:00
namespace MediaBrowser.Model.MediaInfo;
/// <summary>
/// Interface IBlurayExaminer.
/// </summary>
public interface IBlurayExaminer
{
/// <summary>
2023-02-18 08:42:35 -05:00
/// Gets the disc info.
/// </summary>
2023-02-18 08:42:35 -05:00
/// <param name="path">The path.</param>
/// <returns>BlurayDiscInfo.</returns>
BlurayDiscInfo GetDiscInfo(string path);
}