key music user data using musicbrainz id's

This commit is contained in:
Luke Pulverenti
2013-10-01 19:33:50 -04:00
parent 59acec8143
commit 26ccfa9b0f
6 changed files with 103 additions and 9 deletions

View File

@@ -25,5 +25,14 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
/// <value>The game system.</value>
public string GameSystemName { get; set; }
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
public override string GetUserDataKey()
{
return GameSystemName ?? base.GetUserDataKey();
}
}
}