mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
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;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |