Refractor token auth stuff to use identiycore framework
This commit is contained in:
parent
f8d7581a12
commit
8f7df85d49
14 changed files with 377 additions and 50 deletions
10
API/Entities/AppUserRole.cs
Normal file
10
API/Entities/AppUserRole.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using Microsoft.AspNetCore.Identity;
|
||||
|
||||
namespace API.Entities
|
||||
{
|
||||
public class AppUserRole : IdentityUserRole<int>
|
||||
{
|
||||
public AppUser User { get; set; }
|
||||
public AppRole Role { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue