mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			392 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			392 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    public class PlaybackStopEventArgs : PlaybackProgressEventArgs
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a value indicating whether [played to completion].
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if [played to completion]; otherwise, <c>false</c>.</value>
 | 
						|
        public bool PlayedToCompletion { get; set; }
 | 
						|
    }
 | 
						|
} |