25 lines
600 B
C#
25 lines
600 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GWMS.Data
|
|
{
|
|
/// <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; }
|
|
|
|
public IdentityUser Identity { get; set; }
|
|
|
|
public List<string> Roles { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |