aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-01 13:17:33 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-01 13:17:33 -0400
commit57449f62c16a23448770375b04c4786431170c84 (patch)
treebece35c637c3d77b43850950c5cc4ec9dbe0dd8e /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
parent1d7c83bfc672d7c51c1be825c3126eb0a40e5e7d (diff)
added GameGenre
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerApplicationPaths.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
index c2512e016..ac552b8de 100644
--- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
+++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
@@ -225,5 +225,18 @@ namespace MediaBrowser.Server.Implementations
return Path.Combine(ItemsByNamePath, "artists");
}
}
+
+
+ /// <summary>
+ /// Gets the game genre path.
+ /// </summary>
+ /// <value>The game genre path.</value>
+ public string GameGenrePath
+ {
+ get
+ {
+ return Path.Combine(ItemsByNamePath, "GameGenre");
+ }
+ }
}
}