isn/Models/ApplicationUser.cs

10 lines
274 B
C#
Raw Normal View History

2021-04-25 12:12:50 +01:00
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; }
}
}