diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-20 21:04:14 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-20 21:04:14 -0400 |
| commit | 2e511fba839e86d9393e5eeb10795f1b0aed7ce0 (patch) | |
| tree | d82481b8352ae2f088cbe902cc7fc222b8b0a0ed /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | |
| parent | b5615cb233923f8424a40af009101a901f30f591 (diff) | |
support run as service
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs index ac552b8de..fb3c5aec8 100644 --- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs +++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs @@ -26,6 +26,17 @@ namespace MediaBrowser.Server.Implementations { } #endif + + /// <summary> + /// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class. + /// </summary> + /// <param name="programDataPath">The program data path.</param> + public ServerApplicationPaths(string programDataPath) + : base(programDataPath) + { + + } + /// <summary> /// Gets the path to the base root media directory /// </summary> @@ -117,7 +128,7 @@ namespace MediaBrowser.Server.Implementations return Path.Combine(ItemsByNamePath, "MusicGenre"); } } - + /// <summary> /// Gets the path to the Studio directory /// </summary> |
