19 lines
427 B
C#
19 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sample.Mvc.Models
|
|
{
|
|
public class AppUser : Raven.Identity.IdentityUser
|
|
{
|
|
public const string AdminRole = "Admin";
|
|
public const string ManagerRole = "Manager";
|
|
|
|
/// <summary>
|
|
/// The user's full name.
|
|
/// </summary>
|
|
public string FullName { get; set; }
|
|
}
|
|
}
|