using Microsoft.AspNetCore.Identity;
using System.Security.Claims;
namespace WebDoorCreator.Data.User
{
///
/// Classe generalizzaizone identity (user + roles + claims) x gestione semplificata in editing
///
[Serializable]
public class UserData
{
#region Public Properties
public List Claims { get; set; } = new List();
public IdentityUser Identity { get; set; } = null!;
public List Roles { get; set; } = new List();
#endregion Public Properties
}
}