namespace Kyoo.Authentication.Models
{
	/// 
	/// The main authentication options.
	/// 
	public class AuthenticationOption
	{
		/// 
		/// The path to get this option from the root configuration.
		/// 
		public const string Path = "authentication";
		/// 
		/// The options for certificates
		/// 
		public CertificateOption Certificate { get; set; }
		
		/// 
		/// Options for permissions
		/// 
		public PermissionOption Permissions { get; set; }
		
		/// 
		/// Root path of user's profile pictures. 
		/// 
		public string ProfilePicturePath { get; set; }
	}
}