namespace Kyoo.Authentication.Models
{
	/// 
	/// Permission options.
	/// 
	public class PermissionOption
	{
		/// 
		/// The path to get this option from the root configuration.
		/// 
		public const string Path = "authentication:permissions";
		/// 
		/// The default permissions that will be given to a non-connected user.
		/// 
		public string[] Default { get; set; }
		
		/// 
		/// Permissions applied to a new user.
		/// 
		public string[] NewUser { get; set; }
	}
}