2019-06-25 17:39:36 -05:00
|
|
|
using System;
|
2017-08-23 13:31:58 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2019-06-25 17:39:36 -05:00
|
|
|
namespace Sample.Mvc.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
|
|
|
{
|
2019-06-25 22:36:54 -05:00
|
|
|
public const string AdminRole = "Admin";
|
|
|
|
|
public const string ManagerRole = "Manager";
|
2019-06-25 17:39:36 -05:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|