IBlurayExaminer.cs 386 B

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