aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/GameGenre.cs
blob: f2462aac2d58672e607f24251e2ddaf03a9766f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace MediaBrowser.Controller.Entities
{
    public class GameGenre : BaseItem, IItemByName
    {
        /// <summary>
        /// Gets the user data key.
        /// </summary>
        /// <returns>System.String.</returns>
        public override string GetUserDataKey()
        {
            return "GameGenre-" + Name;
        }
    }
}