namespace ElectronNET.API.Entities { /// /// /// public class CertificateTrustDialogOptions { /// /// The certificate to trust/import. /// public Certificate Certificate { get; set; } /// /// The message to display to the user. /// public string Message { get; set; } } }