IBlurayExaminer.cs 389 B

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