mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			508 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			508 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace MediaBrowser.Model.Configuration
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Enum SyncPlayAccess.
 | |
|     /// </summary>
 | |
|     public enum SyncPlayAccess
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// User can create groups and join them.
 | |
|         /// </summary>
 | |
|         CreateAndJoinGroups,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// User can only join already existing groups.
 | |
|         /// </summary>
 | |
|         JoinGroups,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// SyncPlay is disabled for the user.
 | |
|         /// </summary>
 | |
|         None
 | |
|     }
 | |
| }
 |