34 lines
1019 B
C#
34 lines
1019 B
C#
namespace Yavsc.Models.Auth
|
|
{
|
|
using Microsoft.AspNetCore.Identity;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
public class YaIdentityUserLogin
|
|
{
|
|
|
|
/// <summary>
|
|
/// Gets or sets the login provider for the login (e.g. facebook, google)
|
|
/// </summary>
|
|
public virtual string LoginProvider { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the unique provider identifier for this login.
|
|
/// </summary>
|
|
public virtual string ProviderKey { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the friendly name used in a UI for this login.
|
|
/// </summary>
|
|
public virtual string? ProviderDisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the primary key of the user associated with this login.
|
|
/// </summary>
|
|
public String UserId { get; set; } = default!;
|
|
|
|
[ForeignKey("UserId")]
|
|
public virtual ApplicationUser User { get; set; }
|
|
|
|
}
|
|
}
|