mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 21:25:06 +00:00
18 lines
427 B
C#
18 lines
427 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
} |