using Microsoft.AspNetCore.Identity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WebDoorCreator.Data.DbModels; namespace WebDoorCreator.Data.DTO { public class UserRoleClaimDTO { public string userName { get; set; } = ""; public List rolesName { get; set; } = new List(); public string claimName { get; set; } = ""; } }