You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
437 B
C#

namespace DS.WMS.Core.System.Dtos;
/// <summary>
///
/// </summary>
public class RolePermissionTreeViewModel
{
public List<RolePermissionTree> TreeData { get; set; }
public string[] Ids { get; set; }
}
/// <summary>
///
/// </summary>
public class RolePermissionTree
{
public string Title { get; set; }
public string Key { get; set; }
public List<RolePermissionTree> Children { get; set; }
}