output users + roles

This commit is contained in:
2020-04-24 12:46:25 +02:00
parent a44cc4b04d
commit 76e95d34f3
18 changed files with 430 additions and 99 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace zero.Web.Models
{
public class UserRoleListModel : ListModel
{
public string Name { get; set; }
public int CountClaims { get; set; }
public string Icon { get; set; }
}
}