mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			465 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			465 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Jellyfin.Api.Models.PluginDtos
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Plugin security info.
 | |
|     /// </summary>
 | |
|     public class PluginSecurityInfo
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the supporter key.
 | |
|         /// </summary>
 | |
|         public string? SupporterKey { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets a value indicating whether is mb supporter.
 | |
|         /// </summary>
 | |
|         public bool IsMbSupporter { get; set; }
 | |
|     }
 | |
| }
 |