aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IIsoMount.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-12-03 07:34:15 -0700
committercrobibero <cody@robibe.ro>2020-12-03 07:34:15 -0700
commitca5c20c9889f2c279f0b9d80ce776ddc8ee31ad1 (patch)
tree836f8156d2d6dc80e005cdca45bbcd5c28c2d4d0 /MediaBrowser.Model/IO/IIsoMount.cs
parentea20f05de41feb6ba876bc5a17f0d62d419fe04f (diff)
Remove IIsoMounter and IsoMounter
Diffstat (limited to 'MediaBrowser.Model/IO/IIsoMount.cs')
-rw-r--r--MediaBrowser.Model/IO/IIsoMount.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Model/IO/IIsoMount.cs b/MediaBrowser.Model/IO/IIsoMount.cs
deleted file mode 100644
index ea65d976a..000000000
--- a/MediaBrowser.Model/IO/IIsoMount.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.IO
-{
- /// <summary>
- /// Interface IIsoMount.
- /// </summary>
- public interface IIsoMount : IDisposable
- {
- /// <summary>
- /// Gets the iso path.
- /// </summary>
- /// <value>The iso path.</value>
- string IsoPath { get; }
-
- /// <summary>
- /// Gets the mounted path.
- /// </summary>
- /// <value>The mounted path.</value>
- string MountedPath { get; }
- }
-}