isn/Models/ApplicationUser.cs

11 lines
274 B
C#

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; }
}
}