aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/IServerApplicationPaths.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationPaths.cs')
-rw-r--r--MediaBrowser.Controller/IServerApplicationPaths.cs16
1 files changed, 12 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationPaths.cs b/MediaBrowser.Controller/IServerApplicationPaths.cs
index e163ac31d..05f681597 100644
--- a/MediaBrowser.Controller/IServerApplicationPaths.cs
+++ b/MediaBrowser.Controller/IServerApplicationPaths.cs
@@ -1,4 +1,5 @@
-using MediaBrowser.Common.Configuration;
+using System;
+using MediaBrowser.Common.Configuration;
namespace MediaBrowser.Controller
{
@@ -101,9 +102,16 @@ namespace MediaBrowser.Controller
string TranscodingTempPath { get; }
/// <summary>
- /// Gets the downloaded images data path.
+ /// Gets the internal metadata path.
/// </summary>
- /// <value>The downloaded images data path.</value>
- string DownloadedImagesDataPath { get; }
+ /// <value>The internal metadata path.</value>
+ string InternalMetadataPath { get; }
+
+ /// <summary>
+ /// Gets the internal metadata path.
+ /// </summary>
+ /// <param name="id">The identifier.</param>
+ /// <returns>System.String.</returns>
+ string GetInternalMetadataPath(Guid id);
}
} \ No newline at end of file