Files
zaccaria.majid 59059676d5 gestione utenti
2023-03-13 16:32:16 +01:00

18 lines
472 B
C#

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<AspNetUserRoles> rolesName { get; set; } = new List<AspNetUserRoles>();
public string claimName { get; set; } = "";
}
}