namespace Kyoo.Authentication.Models
{
	/// 
	/// A typed option model for the certificate
	/// 
	public class CertificateOption
	{
		/// 
		/// The path to get this option from the root configuration.
		/// 
		public const string Path = "authentication:certificate";
		
		/// 
		/// The path of the certificate file.
		/// 
		public string File { get; set; }
		/// 
		/// The path of the old certificate file.
		/// 
		public string OldFile { get; set; }
		/// 
		/// The password of the certificates.
		/// 
		public string Password { get; set; }
	}
}