Files

19 lines
427 B
C#
Raw Permalink Normal View History

2019-06-25 17:39:36 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2019-06-25 17:39:36 -05:00
namespace Sample.Mvc.Models
{
2019-03-04 16:58:35 -06:00
public class AppUser : Raven.Identity.IdentityUser
{
public const string AdminRole = "Admin";
public const string ManagerRole = "Manager";
2019-06-25 17:39:36 -05:00
/// <summary>
2019-03-04 16:58:35 -06:00
/// The user's full name.
/// </summary>
2019-03-04 16:58:35 -06:00
public string FullName { get; set; }
}
}