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.Common.Implementations/BaseApplicationPaths.cs | |
| parent | b5615cb233923f8424a40af009101a901f30f591 (diff) | |
support run as service
Diffstat (limited to 'MediaBrowser.Common.Implementations/BaseApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/BaseApplicationPaths.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs index f6667f236..c177bd1ed 100644 --- a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs +++ b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs @@ -27,6 +27,15 @@ namespace MediaBrowser.Common.Implementations } /// <summary> + /// Initializes a new instance of the <see cref="BaseApplicationPaths"/> class. + /// </summary> + /// <param name="programDataPath">The program data path.</param> + protected BaseApplicationPaths(string programDataPath) + { + _programDataPath = programDataPath; + } + + /// <summary> /// The _program data path /// </summary> private string _programDataPath; |
