12 lines
260 B
C#
12 lines
260 B
C#
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class RolePermissionGroup
|
|
{
|
|
public string Category { get; set; }
|
|
|
|
public string CategoryName { get; set; }
|
|
|
|
public List<RolePermissionItem> PermissionItems { get; set; }
|
|
}
|
|
}
|