using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using RavenDB.Identity; namespace Sample.Web.NetCore.Models { // Add profile data for application users by adding properties to the AppUser class public class AppUser : IdentityUser { /// /// Sample property. Add your own. /// public bool IsAyende { get; set; } } }