2017-08-23 13:31:58 -05:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using RavenDB.Identity;
|
|
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
namespace Sample.Models
|
2017-08-23 13:31:58 -05:00
|
|
|
{
|
|
|
|
|
// Add profile data for application users by adding properties to the AppUser class
|
|
|
|
|
public class AppUser : IdentityUser
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sample property. Add your own.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsAyende { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|