aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Plugins/IPlugin.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Plugins/IPlugin.cs')
-rw-r--r--MediaBrowser.Common/Plugins/IPlugin.cs14
1 files changed, 2 insertions, 12 deletions
diff --git a/MediaBrowser.Common/Plugins/IPlugin.cs b/MediaBrowser.Common/Plugins/IPlugin.cs
index 5a1252d1c..999a783fd 100644
--- a/MediaBrowser.Common/Plugins/IPlugin.cs
+++ b/MediaBrowser.Common/Plugins/IPlugin.cs
@@ -39,12 +39,6 @@ namespace MediaBrowser.Common.Plugins
Version Version { get; }
/// <summary>
- /// Gets the name the assembly file
- /// </summary>
- /// <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>
@@ -57,12 +51,6 @@ namespace MediaBrowser.Common.Plugins
DateTime ConfigurationDateLastModified { get; }
/// <summary>
- /// Gets the last date modified of the plugin
- /// </summary>
- /// <value>The assembly date last modified.</value>
- DateTime AssemblyDateLastModified { get; }
-
- /// <summary>
/// Gets the path to the assembly file
/// </summary>
/// <value>The assembly file path.</value>
@@ -116,5 +104,7 @@ namespace MediaBrowser.Common.Plugins
/// Called when just before the plugin is uninstalled from the server.
/// </summary>
void OnUninstalling();
+
+ void SetStartupInfo(bool isFirstRun, Func<string, DateTime> dateModifiedFn, Action<string> directoryCreateFn);
}
} \ No newline at end of file