Files
Electron.NET/ElectronNET.API/Entities/ImportCertificateOptions.cs
2017-10-14 00:06:58 +02:00

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; }
}
}