mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
35 lines
824 B
C#
35 lines
824 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
public class CertificatePrincipal
|
|
{
|
|
/// <summary>
|
|
/// Common Name
|
|
/// </summary>
|
|
public string CommonName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Country or region
|
|
/// </summary>
|
|
public string Country { get; set; }
|
|
|
|
/// <summary>
|
|
/// Locality
|
|
/// </summary>
|
|
public string Locality { get; set; }
|
|
|
|
/// <summary>
|
|
/// Organization names
|
|
/// </summary>
|
|
public string[] Organizations { get; set; }
|
|
|
|
/// <summary>
|
|
/// Organization Unit names
|
|
/// </summary>
|
|
public string[] OrganizationUnits { get; set; }
|
|
|
|
/// <summary>
|
|
/// State or province
|
|
/// </summary>
|
|
public string State { get; set; }
|
|
}
|
|
} |