aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IIsoMounter.cs
diff options
context:
space:
mode:
authorConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com>2020-06-08 14:43:58 -0500
committerConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com>2020-06-08 14:43:58 -0500
commit35ff2be9d766ba4f5d85f859d86ff03ce588795f (patch)
tree4957634b172a8e2fa3433f06f27d05154facb5cf /MediaBrowser.Model/IO/IIsoMounter.cs
parent5d281adedd0d36f34dd3cb8344af3e6a44b5a29f (diff)
parentdcc131740d146da9046bfc0b7820fd2050d8e423 (diff)
Merge remote-tracking branch 'upstream/master' into quickconnect
Diffstat (limited to 'MediaBrowser.Model/IO/IIsoMounter.cs')
-rw-r--r--MediaBrowser.Model/IO/IIsoMounter.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/MediaBrowser.Model/IO/IIsoMounter.cs b/MediaBrowser.Model/IO/IIsoMounter.cs
index 83fdb5fd6..0d257395a 100644
--- a/MediaBrowser.Model/IO/IIsoMounter.cs
+++ b/MediaBrowser.Model/IO/IIsoMounter.cs
@@ -10,6 +10,12 @@ namespace MediaBrowser.Model.IO
public interface IIsoMounter
{
/// <summary>
+ /// Gets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ string Name { get; }
+
+ /// <summary>
/// Mounts the specified iso path.
/// </summary>
/// <param name="isoPath">The iso path.</param>
@@ -25,11 +31,5 @@ namespace MediaBrowser.Model.IO
/// <param name="path">The path.</param>
/// <returns><c>true</c> if this instance can mount the specified path; otherwise, <c>false</c>.</returns>
bool CanMount(string path);
-
- /// <summary>
- /// Gets the name.
- /// </summary>
- /// <value>The name.</value>
- string Name { get; }
}
}