mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Holds information about a playback progress event
 | 
						|
    /// </summary>
 | 
						|
    public class PlaybackProgressEventArgs : EventArgs
 | 
						|
    {
 | 
						|
        public User User { get; set; }
 | 
						|
        public long? PlaybackPositionTicks { get; set; }
 | 
						|
        public BaseItem Item { get; set; }
 | 
						|
    }
 | 
						|
}
 |