using Microsoft.AspNetCore.Identity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebDoorCreator.Data.User { /// /// Classe generalizzaizone identity (user + roles + claims) x gestione semplificata in editing /// 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 } }