mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
11 lines
No EOL
289 B
C#
11 lines
No EOL
289 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Identity
|
|
{
|
|
[Table("userClaims")]
|
|
public class ApplicationUserClaim : IdentityUserClaim<int>
|
|
{
|
|
public virtual ApplicationUser User { get; set; }
|
|
}
|
|
} |