mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 05:34:47 +00:00
19 lines
488 B
C#
19 lines
488 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
public class CertificateTrustDialogOptions
|
|
{
|
|
/// <summary>
|
|
/// The certificate to trust/import.
|
|
/// </summary>
|
|
public Certificate Certificate { get; set; }
|
|
|
|
/// <summary>
|
|
/// The message to display to the user.
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
}
|
|
} |