983586552b
- Core - Data.Admin
21 lines
581 B
C#
21 lines
581 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace MagMan.Data.Admin
|
|
{
|
|
/// <summary>
|
|
/// Classe generalizzaizone identity (user + roles + claims) x gestione semplificata in editing
|
|
/// </summary>
|
|
public class UserData
|
|
{
|
|
#region Public Properties
|
|
|
|
public List<System.Security.Claims.Claim> Claims { get; set; } = new List<System.Security.Claims.Claim>();
|
|
|
|
public IdentityUser Identity { get; set; } = new IdentityUser();
|
|
|
|
public List<string> Roles { get; set; } = new List<string>();
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|