Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Authentication.External;
/// 
/// External authentication claim
///  
[Serializable]
public partial class ExternalAuthenticationClaim
{
    /// 
    /// Ctor
    ///  
    /// Type
    /// Value
    public ExternalAuthenticationClaim(string type, string value)
    {
        Type = type;
        Value = value;
    }
    /// 
    /// Gets or sets the claim type of the claim
    ///  
    public string Type { get; set; }
    /// 
    /// Gets or sets the value of the claim
    ///  
    public string Value { get; set; }
}