mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 05:34:33 +00:00
16 lines
369 B
C#
16 lines
369 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
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; }
|
|
}
|
|
}
|