added back IsFirstRun

This commit is contained in:
Luke Pulverenti
2013-04-10 21:52:15 -04:00
parent c11a61e133
commit 5e1f4c01b8
2 changed files with 12 additions and 1 deletions

View File

@@ -34,6 +34,12 @@ namespace MediaBrowser.Common.Plugins
/// <value>The name.</value>
public abstract string Name { get; }
/// <summary>
/// Gets a value indicating whether this instance is first run.
/// </summary>
/// <value><c>true</c> if this instance is first run; otherwise, <c>false</c>.</value>
public bool IsFirstRun { get; private set; }
/// <summary>
/// Gets the description.
/// </summary>
@@ -257,7 +263,6 @@ namespace MediaBrowser.Common.Plugins
/// <summary>
/// Saves the current configuration to the file system
/// </summary>
/// <exception cref="System.InvalidOperationException">Cannot call Plugin.SaveConfiguration from the UI.</exception>
public virtual void SaveConfiguration()
{
lock (_configurationSaveLock)