namespace Nop.Core.Domain.Customers; /// /// Represents an external authentication record /// public partial class ExternalAuthenticationRecord : BaseEntity { /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets the external email /// public string Email { get; set; } /// /// Gets or sets the external identifier /// public string ExternalIdentifier { get; set; } /// /// Gets or sets the external display identifier /// public string ExternalDisplayIdentifier { get; set; } /// /// Gets or sets the OAuthToken /// public string OAuthToken { get; set; } /// /// Gets or sets the OAuthAccessToken /// public string OAuthAccessToken { get; set; } /// /// Gets or sets the provider /// public string ProviderSystemName { get; set; } }