mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			553 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			553 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Kyoo.Authentication.Models
 | 
						|
{
 | 
						|
	/// <summary>
 | 
						|
	/// Permission options.
 | 
						|
	/// </summary>
 | 
						|
	public class PermissionOption
 | 
						|
	{
 | 
						|
		/// <summary>
 | 
						|
		/// The path to get this option from the root configuration.
 | 
						|
		/// </summary>
 | 
						|
		public const string Path = "authentication:permissions";
 | 
						|
 | 
						|
		/// <summary>
 | 
						|
		/// The default permissions that will be given to a non-connected user.
 | 
						|
		/// </summary>
 | 
						|
		public string[] Default { get; set; }
 | 
						|
		
 | 
						|
		/// <summary>
 | 
						|
		/// Permissions applied to a new user.
 | 
						|
		/// </summary>
 | 
						|
		public string[] NewUser { get; set; }
 | 
						|
	}
 | 
						|
} |