2019-03-04 16:58:35 -06:00
|
|
|
using Raven.Identity;
|
|
|
|
|
using System;
|
2017-08-23 13:31:58 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
namespace Sample.Models
|
2017-08-23 13:31:58 -05:00
|
|
|
{
|
2019-03-04 16:58:35 -06:00
|
|
|
public class AppUser : Raven.Identity.IdentityUser
|
2017-08-23 13:31:58 -05:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-03-04 16:58:35 -06:00
|
|
|
/// The user's full name.
|
2017-08-23 13:31:58 -05:00
|
|
|
/// </summary>
|
2019-03-04 16:58:35 -06:00
|
|
|
public string FullName { get; set; }
|
2017-08-23 13:31:58 -05:00
|
|
|
}
|
|
|
|
|
}
|