mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 13:44:34 +00:00
19 lines
415 B
C#
19 lines
415 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; }
|
|
}
|
|
}
|