Files
Electron.NET/src/ElectronNET.API/API/Entities/ImportCertificateOptions.cs
2025-11-09 03:50:24 +01:00

18 lines
407 B
C#

namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public class ImportCertificateOptions
{
/// <summary>
/// Path for the pkcs12 file.
/// </summary>
public string Certificate { get; set; }
/// <summary>
/// Passphrase for the certificate.
/// </summary>
public string Password { get; set; }
}
}