mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			395 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			395 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class Year
 | 
						|
    /// </summary>
 | 
						|
    public class Year : BaseItem, IItemByName
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the user data key.
 | 
						|
        /// </summary>
 | 
						|
        /// <returns>System.String.</returns>
 | 
						|
        public override string GetUserDataKey()
 | 
						|
        {
 | 
						|
            return "Year-" + Name;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |