namespace Admin.NET.Core;
///
/// 密码配置选项
///
public sealed class CryptogramOptions : IConfigurableOptions
{
///
/// 密码类型
///
public string CryptoType { get; set; }
///
/// 公钥
///
public string PublicKey { get; set; }
///
/// 私钥
///
public string PrivateKey { get; set; }
}