mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-08-11 02:29:41 +00:00
15 lines
381 B
C#
15 lines
381 B
C#
|
|
namespace ElectronNET.API.Entities
|
|||
|
|
{
|
|||
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|