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