mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			282 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			282 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| namespace MediaBrowser.Controller.Entities
 | |
| {
 | |
|     public interface IHasShares
 | |
|     {
 | |
|         Share[] Shares { get; set; }
 | |
|     }
 | |
| 
 | |
|     public class Share
 | |
|     {
 | |
|         public string UserId { get; set; }
 | |
| 
 | |
|         public bool CanEdit { get; set; }
 | |
|     }
 | |
| }
 |