mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			306 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			306 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| 
 | |
| namespace MediaBrowser.Model.Entities;
 | |
| 
 | |
| /// <summary>
 | |
| /// Interface for access to shares.
 | |
| /// </summary>
 | |
| public interface IHasShares
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Gets or sets the shares.
 | |
|     /// </summary>
 | |
|     IReadOnlyList<PlaylistUserPermissions> Shares { get; set; }
 | |
| }
 |