added GameGenre

This commit is contained in:
Luke Pulverenti
2013-07-01 13:17:33 -04:00
parent 1d7c83bfc6
commit 57449f62c1
15 changed files with 503 additions and 3 deletions

View File

@@ -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");
}
}
}
}