mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 21:23:48 +00:00
32 lines
861 B
C#
32 lines
861 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class RemoveClientCertificate
|
|
{
|
|
/// <summary>
|
|
/// Origin of the server whose associated client certificate must be removed from
|
|
/// the cache.
|
|
/// </summary>
|
|
public string Origin { get; set; }
|
|
|
|
/// <summary>
|
|
/// clientCertificate.
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="origin">Origin of the server whose associated client certificate
|
|
/// must be removed from the cache.</param>
|
|
/// <param name="type">clientCertificate.</param>
|
|
public RemoveClientCertificate(string origin, string type)
|
|
{
|
|
Origin = origin;
|
|
Type = type;
|
|
}
|
|
}
|
|
}
|