adds aspnet.identity
This commit is contained in:
parent
a2f26f1e8e
commit
dc37c9a9f0
26 changed files with 1106 additions and 122 deletions
10
Models/ApplicationUser.cs
Normal file
10
Models/ApplicationUser.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using Microsoft.AspNetCore.Identity;
|
||||
|
||||
namespace nuget_host.Models
|
||||
{
|
||||
// Add profile data for application users by adding properties to the ApplicationUser class
|
||||
public class ApplicationUser : IdentityUser
|
||||
{
|
||||
public string FullName { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue