From 8ce3e74e8112a94773df22827849bf274fc88198 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Sun, 24 Feb 2013 16:53:54 -0500 Subject: More DI --- MediaBrowser.Controller/IServerApplicationPaths.cs | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 MediaBrowser.Controller/IServerApplicationPaths.cs (limited to 'MediaBrowser.Controller/IServerApplicationPaths.cs') diff --git a/MediaBrowser.Controller/IServerApplicationPaths.cs b/MediaBrowser.Controller/IServerApplicationPaths.cs new file mode 100644 index 000000000..b5fcdef28 --- /dev/null +++ b/MediaBrowser.Controller/IServerApplicationPaths.cs @@ -0,0 +1,85 @@ +using MediaBrowser.Common.Kernel; + +namespace MediaBrowser.Controller +{ + public interface IServerApplicationPaths : IApplicationPaths + { + /// + /// Gets the path to the base root media directory + /// + /// The root folder path. + string RootFolderPath { get; } + + /// + /// Gets the path to the default user view directory. Used if no specific user view is defined. + /// + /// The default user views path. + string DefaultUserViewsPath { get; } + + /// + /// Gets the path to localization data. + /// + /// The localization path. + string LocalizationPath { get; } + + /// + /// Gets the path to the Images By Name directory + /// + /// The images by name path. + string ImagesByNamePath { get; } + + /// + /// Gets the path to the People directory + /// + /// The people path. + string PeoplePath { get; } + + /// + /// Gets the path to the Genre directory + /// + /// The genre path. + string GenrePath { get; } + + /// + /// Gets the path to the Studio directory + /// + /// The studio path. + string StudioPath { get; } + + /// + /// Gets the path to the Year directory + /// + /// The year path. + string YearPath { get; } + + /// + /// Gets the path to the General IBN directory + /// + /// The general path. + string GeneralPath { get; } + + /// + /// Gets the path to the Ratings IBN directory + /// + /// The ratings path. + string RatingsPath { get; } + + /// + /// Gets the path to the user configuration directory + /// + /// The user configuration directory path. + string UserConfigurationDirectoryPath { get; } + + /// + /// Gets the FF MPEG stream cache path. + /// + /// The FF MPEG stream cache path. + string FFMpegStreamCachePath { get; } + + /// + /// Gets the folder path to tools + /// + /// The media tools path. + string MediaToolsPath { get; } + } +} \ No newline at end of file -- cgit v1.2.3