Create a class called ApplicationUser that comes from IdentityUser. It does not need any properties or methods, but you can freely distribute it with any information that you want to store about each user that you have in the system (name, addresses, etc.).
public class ApplicationUser : IdentityUser { public virtual string Email { get; set; }
source share