adds aspnet.identity

This commit is contained in:
Paul Schneider 2021-04-25 12:12:50 +01:00
commit dc37c9a9f0
26 changed files with 1106 additions and 122 deletions

10
Models/ApplicationUser.cs Normal file
View 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; }
}
}