18 lines
472 B
C#
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; } = "";
|
|
}
|
|
}
|