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.

20 lines
356 B
C#

namespace DS.WMS.Core.Sys.Dtos;
12 months ago
/// <summary>
///
/// </summary>
public class PermissionTreeViewModel
{
public string Title { get; set; }
11 months ago
public long? Value { get; set; }
12 months ago
public List<PermissionTreeViewModel> Children { get; set; }
12 months ago
}
public class PermissionTree
{
public string Title { get; set; }
11 months ago
public long? Value { get; set; }
12 months ago
}