added back IsFirstRun
This commit is contained in:
parent
c11a61e133
commit
5e1f4c01b8
|
@ -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)
|
||||
|
|
|
@ -44,6 +44,12 @@ namespace MediaBrowser.Common.Plugins
|
|||
/// <value>The name of the assembly file.</value>
|
||||
string AssemblyFileName { 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>
|
||||
bool IsFirstRun { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the last date modified of the configuration
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue
Block a user