mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			663 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			663 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Kyoo.Authentication.Models
 | 
						|
{
 | 
						|
	/// <summary>
 | 
						|
	/// The main authentication options.
 | 
						|
	/// </summary>
 | 
						|
	public class AuthenticationOption
 | 
						|
	{
 | 
						|
		/// <summary>
 | 
						|
		/// The path to get this option from the root configuration.
 | 
						|
		/// </summary>
 | 
						|
		public const string Path = "authentication";
 | 
						|
 | 
						|
		/// <summary>
 | 
						|
		/// The options for certificates
 | 
						|
		/// </summary>
 | 
						|
		public CertificateOption Certificate { get; set; }
 | 
						|
		
 | 
						|
		/// <summary>
 | 
						|
		/// Options for permissions
 | 
						|
		/// </summary>
 | 
						|
		public PermissionOption Permissions { get; set; }
 | 
						|
		
 | 
						|
		/// <summary>
 | 
						|
		/// Root path of user's profile pictures. 
 | 
						|
		/// </summary>
 | 
						|
		public string ProfilePicturePath { get; set; }
 | 
						|
	}
 | 
						|
} |