mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			486 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			486 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Sync
 | 
						|
{
 | 
						|
    public class SyncDataRequest
 | 
						|
    {
 | 
						|
        public List<string> LocalItemIds { get; set; }
 | 
						|
        public List<string> OfflineUserIds { get; set; }
 | 
						|
        public List<string> SyncJobItemIds { get; set; }
 | 
						|
 | 
						|
        public string TargetId { get; set; }
 | 
						|
 | 
						|
        public SyncDataRequest()
 | 
						|
        {
 | 
						|
            LocalItemIds = new List<string>();
 | 
						|
            OfflineUserIds = new List<string>();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |