namespace ElectronNET.API.Entities
{
///
///
///
public class RemoveClientCertificate
{
///
/// Origin of the server whose associated client certificate must be removed from
/// the cache.
///
public string Origin { get; set; }
///
/// clientCertificate.
///
public string Type { get; set; }
///
///
///
/// Origin of the server whose associated client certificate
/// must be removed from the cache.
/// clientCertificate.
public RemoveClientCertificate(string origin, string type)
{
Origin = origin;
Type = type;
}
}
}