You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityUserToken.cs

51 lines
1.4 KiB

using System;
using JetBrains.Annotations;
using Volo.Abp.Domain.Entities;
namespace Volo.Abp.Identity
{
/// <summary>
/// Represents an authentication token for a user.
/// </summary>
public class IdentityUserToken : Entity
{
public const int MaxLoginProviderLength = 64;
/// <summary>
/// Gets or sets the primary key of the user that the token belongs to.
/// </summary>
public virtual Guid UserId { get; protected set; }
/// <summary>
/// Gets or sets the LoginProvider this token is from.
/// </summary>
public virtual string LoginProvider { get; protected set; }
/// <summary>
/// Gets or sets the name of the token.
/// </summary>
public virtual string Name { get; protected set; }
/// <summary>
/// Gets or sets the token value.
/// </summary>
public virtual string Value { get; set; }
protected IdentityUserToken()
{
}
protected internal IdentityUserToken(Guid id, Guid userId, [NotNull] string loginProvider, [NotNull] string name, string value)
{
Check.NotNull(loginProvider, nameof(loginProvider));
Check.NotNull(name, nameof(name));
Id = id;
UserId = userId;
LoginProvider = loginProvider;
Name = name;
Value = value;
}
}
}