14 lines
359 B
C#
14 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace RMDataManager.Models
|
|
{
|
|
public class ApplicationUserModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string EmailAddress { get; set; }
|
|
public Dictionary<string, string> Roles { get; set; } = new Dictionary<string, string>();
|
|
}
|
|
} |