Skip to content

Instantly share code, notes, and snippets.

@PadreSVK
Created December 15, 2019 17:41
Show Gist options
  • Save PadreSVK/08aa13645152a9ed27eaea3723c92230 to your computer and use it in GitHub Desktop.
Save PadreSVK/08aa13645152a9ed27eaea3723c92230 to your computer and use it in GitHub Desktop.
User and Role wrapper around Identity
using Microsoft.AspNetCore.Identity;
namespace DAL.Models.Identity
{
public class Role : IdentityRole<int>
{
}
public class User : IdentityUser<int>
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment