mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 11:07:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Entities;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class ItemChangeEventArgs
 | 
						|
    /// </summary>
 | 
						|
    public class ItemChangeEventArgs
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the item.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The item.</value>
 | 
						|
        public BaseItem Item { get; set; }
 | 
						|
    }
 | 
						|
}
 |