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