31 lines
804 B
C#
31 lines
804 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace BlueWest.WebApi.Context.Users;
|
|
|
|
/// <inheritdoc />
|
|
public class ApplicationUserClaim : IdentityUserClaim<string>
|
|
{
|
|
/// <inheritdoc />
|
|
public sealed override int Id { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public sealed override string UserId { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public sealed override string ClaimType { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public sealed override string ClaimValue { get; set; }
|
|
|
|
public ApplicationUserClaim(ApplicationUserClaim applicationUserClaim)
|
|
{
|
|
Id = applicationUserClaim.Id;
|
|
UserId = applicationUserClaim.UserId;
|
|
ClaimType = applicationUserClaim.ClaimType;
|
|
ClaimValue = applicationUserClaim.ClaimValue;
|
|
}
|
|
|
|
public ApplicationUserClaim()
|
|
{
|
|
}
|
|
} |