mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			748 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			748 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Model.Entities;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Collections
 | |
| {
 | |
|     public class CollectionCreationOptions : IHasProviderIds
 | |
|     {
 | |
|         public string Name { get; set; }
 | |
| 
 | |
|         public Guid? ParentId { get; set; }
 | |
| 
 | |
|         public bool IsLocked { get; set; }
 | |
| 
 | |
|         public Dictionary<string, string> ProviderIds { get; set; }
 | |
| 
 | |
|         public List<Guid> ItemIdList { get; set; }
 | |
|         public List<Guid> UserIds { get; set; }
 | |
| 
 | |
|         public CollectionCreationOptions()
 | |
|         {
 | |
|             ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 | |
|             ItemIdList = new List<Guid>();
 | |
|             UserIds = new List<Guid>();
 | |
|         }
 | |
|     }
 | |
| }
 |