From 75dd40a2ea35af4f941d468f99506a7a131e2800 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 30 Sep 2013 18:18:44 -0400 Subject: add ability to install pismo --- MediaBrowser.Model/IO/IIsoMounter.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'MediaBrowser.Model/IO') diff --git a/MediaBrowser.Model/IO/IIsoMounter.cs b/MediaBrowser.Model/IO/IIsoMounter.cs index 91a0453681..6684e7eff6 100644 --- a/MediaBrowser.Model/IO/IIsoMounter.cs +++ b/MediaBrowser.Model/IO/IIsoMounter.cs @@ -23,5 +23,29 @@ namespace MediaBrowser.Model.IO /// The path. /// true if this instance can mount the specified path; otherwise, false. bool CanMount(string path); + + /// + /// Gets a value indicating whether [requires installation]. + /// + /// true if [requires installation]; otherwise, false. + bool RequiresInstallation { get; } + + /// + /// Gets a value indicating whether this instance is installed. + /// + /// true if this instance is installed; otherwise, false. + bool IsInstalled { get; } + + /// + /// Installs this instance. + /// + /// Task. + Task Install(CancellationToken cancellationToken); + + /// + /// Gets the name. + /// + /// The name. + string Name { get; } } } -- cgit v1.2.3