diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-10 23:31:00 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-10 23:31:00 -0400 |
| commit | 18325159c5b46d2aa31d2dafd837ede7214b28ef (patch) | |
| tree | 4966247933da5aeffad1672d87c67c1ebbb036f1 /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | |
| parent | fab983b6dcf7b282e8c96e3509209fcc568fb922 (diff) | |
added a new MusicGenre entity
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs index 655876c8c..c2512e016 100644 --- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs +++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs @@ -107,6 +107,18 @@ namespace MediaBrowser.Server.Implementations } /// <summary> + /// Gets the path to the Genre directory + /// </summary> + /// <value>The genre path.</value> + public string MusicGenrePath + { + get + { + return Path.Combine(ItemsByNamePath, "MusicGenre"); + } + } + + /// <summary> /// Gets the path to the Studio directory /// </summary> /// <value>The studio path.</value> |
