mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Model.Sync;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Sync
 | 
						|
{
 | 
						|
    public class SyncedItemProgress
 | 
						|
    {
 | 
						|
        public double Progress { get; set; }
 | 
						|
        public SyncJobItemStatus Status { get; set; }
 | 
						|
    }
 | 
						|
}
 |