add ability to install pismo

This commit is contained in:
Luke Pulverenti
2013-09-30 18:18:44 -04:00
parent a7c8750b52
commit 75dd40a2ea
11 changed files with 85 additions and 26 deletions

View File

@@ -23,5 +23,29 @@ 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 a value indicating whether [requires installation].
/// </summary>
/// <value><c>true</c> if [requires installation]; otherwise, <c>false</c>.</value>
bool RequiresInstallation { get; }
/// <summary>
/// Gets a value indicating whether this instance is installed.
/// </summary>
/// <value><c>true</c> if this instance is installed; otherwise, <c>false</c>.</value>
bool IsInstalled { get; }
/// <summary>
/// Installs this instance.
/// </summary>
/// <returns>Task.</returns>
Task Install(CancellationToken cancellationToken);
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
}
}