diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-08 00:08:27 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-08 00:08:27 -0500 |
| commit | 9911df11e8a96d5d7fffcd8618b63a6adb27701f (patch) | |
| tree | b7e446296c6b0f61804430cd59beda68aa549065 /MediaBrowser.Controller/IServerApplicationPaths.cs | |
| parent | 211d24e66e717f6294840b4f91806a24c1fb2e78 (diff) | |
extracted provider manager. took more off the kernel
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationPaths.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationPaths.cs b/MediaBrowser.Controller/IServerApplicationPaths.cs index c9bac4dd2..f88d7a5f6 100644 --- a/MediaBrowser.Controller/IServerApplicationPaths.cs +++ b/MediaBrowser.Controller/IServerApplicationPaths.cs @@ -74,12 +74,18 @@ namespace MediaBrowser.Controller /// Gets the FF MPEG stream cache path. /// </summary> /// <value>The FF MPEG stream cache path.</value> - string FFMpegStreamCachePath { get; } + string EncodedMediaCachePath { get; } /// <summary> /// Gets the folder path to tools /// </summary> /// <value>The media tools path.</value> string MediaToolsPath { get; } + + /// <summary> + /// Gets the downloaded images data path. + /// </summary> + /// <value>The downloaded images data path.</value> + string DownloadedImagesDataPath { get; } } }
\ No newline at end of file |
