Files
webdoorcreator/WebDoorCreator.Data/DTO/UserRoleClaimDTO.cs
T
2023-03-09 18:08:38 +01:00

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