Files
mixtape/zero.Api/Modules_legacy/Users/UserRoleListModel.cs
T

14 lines
242 B
C#
Raw Normal View History

2020-04-24 12:46:25 +02:00
namespace zero.Web.Models
{
public class UserRoleListModel : ListModel
{
public string Name { get; set; }
public int CountClaims { get; set; }
public string Icon { get; set; }
2020-04-29 12:11:35 +02:00
public string Alias { get; set; }
2020-04-24 12:46:25 +02:00
}
}