IIsoMount.cs 492 B

12345678910111213141516171819202122
  1. using System;
  2. namespace MediaBrowser.Model.IO
  3. {
  4. /// <summary>
  5. /// Interface IIsoMount
  6. /// </summary>
  7. public interface IIsoMount : IDisposable
  8. {
  9. /// <summary>
  10. /// Gets or sets the iso path.
  11. /// </summary>
  12. /// <value>The iso path.</value>
  13. string IsoPath { get; }
  14. /// <summary>
  15. /// Gets the mounted path.
  16. /// </summary>
  17. /// <value>The mounted path.</value>
  18. string MountedPath { get; }
  19. }
  20. }