32 lines
754 B
C#
32 lines
754 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using MapTo;
|
|
|
|
namespace CodeLiturgy.Data.Application.Users
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
public partial class ApplicationUserClaim : IdentityUserClaim<string>
|
|
{
|
|
/// <inheritdoc />
|
|
public sealed override int Id { get; set; }
|
|
|
|
#region User
|
|
/// <inheritdoc />
|
|
public sealed override string UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Application User entity
|
|
/// </summary>
|
|
public ApplicationUser ApplicationUser { get; set; }
|
|
|
|
#endregion
|
|
|
|
/// <inheritdoc />
|
|
public sealed override string ClaimType { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public sealed override string ClaimValue { get; set; }
|
|
|
|
}
|
|
}
|