using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
{
///
/// Options for app.importCertificate(options) on Linux.
///
/// Up-to-date with Electron API 39.2
[SupportedOSPlatform("linux")]
public class ImportCertificateOptions
{
///
/// Path for the pkcs12 file.
///
public string Certificate { get; set; }
///
/// Passphrase for the certificate.
///
public string Password { get; set; }
}
}